Lines Matching refs:glu

128 	const glu::ContextType				contextType		= context.getRenderContext().getType();
129 const glu::GLSLVersion glslVersion = glu::getContextTypeGLSLVersion(contextType);
132 specializationMap["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glslVersion);
173 const glu::ShaderProgram* m_samplerProgram;
355 const glu::ShaderProgram program (m_context.getRenderContext(), glu::ProgramSources()
356 << glu::VertexSource(specializeShader(m_context, vertexShaderSource))
357 << glu::FragmentSource(specializeShader(m_context, fragmentShaderSource)));
440 m_samplerProgram = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(specializeShader(m_context, vertexShaderSource)) << glu::FragmentSource(specializeShader(m_context, fragShaderSource)));
518 glu::readPixels (m_context.getRenderContext(), 0, 0, dst.getAccess());
584 const glu::ShaderProgram* m_samplerProgram;
589 const glu::ShaderProgram* m_alphaProgram;
799 const glu::GLSLVersion glslVersion = glu::getContextTypeGLSLVersion(m_context.getRenderContext().getType());
801 args["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glslVersion);
804 m_samplerProgram = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(specializeShader(m_context, vertexShaderSource)) << glu::FragmentSource(tcu::StringTemplate(fragShaderSource).specialize(args)));
834 m_alphaProgram = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(specializeShader(m_context, vertexShaderSource)) << glu::FragmentSource(specializeShader(m_context, fragShaderSource)));
1012 glu::Buffer vertexBuffer (m_context.getRenderContext());
1043 glu::readPixels (m_context.getRenderContext(), 0, 0, dst.getAccess());
1127 glu::ShaderProgram* m_drawShader;
1128 glu::ShaderProgram* m_samplerShader;
1166 const bool supportsES32orGL45 = glu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2)) ||
1167 glu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType::core(4, 5));
1185 m_testCtx.getLog() << tcu::TestLog::Message << "Max sample count for " << glu::getTextureFormatStr(internalFormat) << ": " << maxSamples << tcu::TestLog::EndMessage;
1237 if (!glu::isContextTypeES(m_context.getRenderContext().getType()))
1337 const glu::GLSLVersion glslVersion = glu::getContextTypeGLSLVersion(m_context.getRenderContext().getType());
1338 fragmentArguments["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glslVersion);
1349 m_drawShader = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(specializeShader(m_context, vertexShaderSource)) << glu::FragmentSource(tcu::StringTemplate(fragmentSource).specialize(fragmentArguments)));
1389 const glu::GLSLVersion glslVersion = glu::getContextTypeGLSLVersion(m_context.getRenderContext().getType());
1390 fragmentArguments["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glslVersion);
1393 glu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2)) ||
1394 glu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType::core(4, 5));
1426 m_samplerShader = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(specializeShader(m_context, vertexShaderSource)) << glu::FragmentSource(tcu::StringTemplate(fragmentShaderSource).specialize(fragmentArguments)));
1446 glu::Buffer vertexAttibBuffer (m_context.getRenderContext());
1533 glu::Buffer vertexAttibBuffer (m_context.getRenderContext());
1574 glu::readPixels(m_context.getRenderContext(), 0, 0, dst.getAccess());
1744 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog());
1778 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Expected GL_INVALID_VALUE, got " << glu::getErrorStr(error) << tcu::TestLog::EndMessage;
1821 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Expected GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE, got " << glu::getFramebufferStatusName(status) << tcu::TestLog::EndMessage;
1829 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR! Expected GL_FRAMEBUFFER_COMPLETE, got " << glu::getFramebufferStatusName(status) << tcu::TestLog::EndMessage;
1950 glu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType::es(3, 2)) ||
1951 glu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType::core(4, 5));
1957 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog());
1958 glu::Texture texture (m_context.getRenderContext());
1982 m_testCtx.getLog() << tcu::TestLog::Message << "Got unexpected error: " << glu::getErrorStr(error) << ", expected: " << glu::getErrorStr(getExpectedError()) << tcu::TestLog::EndMessage;
2080 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog());
2081 glu::Texture texture (m_context.getRenderContext());
2115 m_testCtx.getLog() << tcu::TestLog::Message << "Got unexpected error: " << glu::getErrorStr(error) << ", expected: " << glu::getErrorStr(expectedError) << tcu::TestLog::EndMessage;