Lines Matching refs:glu

49 	ShaderIntegerMixCase(Context& context, const char* name, const char* description, glu::GLSLVersion glslVersion)
69 glu::GLSLVersion m_glslVersion;
78 glu::GLSLVersion glslVersion)
114 const glu::GLSLVersion v = glslVersionIsES(m_glslVersion) ? glu::GLSL_VERSION_300_ES : glu::GLSL_VERSION_330;
123 args["VERSION_DECL"] = glu::getGLSLVersionDeclaration(v);
149 glu::GLSLVersion glslVersion, bool _use_extension, bool _is_negative_testing)
197 glu::GLSLVersion v;
202 v = glslVersionIsES(m_glslVersion) ? glu::GLSL_VERSION_300_ES : glu::GLSL_VERSION_330;
210 v = glslVersionIsES(m_glslVersion) ? glu::GLSL_VERSION_300_ES : glu::GLSL_VERSION_330;
219 if (m_glslVersion < glu::GLSL_VERSION_310_ES)
224 if (m_glslVersion < glu::GLSL_VERSION_450)
233 args["VERSION_DECL"] = glu::getGLSLVersionDeclaration(v);
277 glu::GLSLVersion glslVersion, const char* _type)
355 if ((is_es && (m_glslVersion < glu::GLSL_VERSION_310_ES)) || !is_es)
375 args["VERSION_DECL"] = glu::getGLSLVersionDeclaration(m_glslVersion);
383 glu::ShaderProgram prog(m_context.getRenderContext(),
384 glu::makeVtxFragSources(vs_code.c_str(), fs_code.c_str()));
474 glu::VertexArrayBinding vertexArrays[] = {
475 glu::va::Float("vertex", 2, DE_LENGTH_OF_ARRAY(pointIndices), 0, vertex),
476 glu::va::Int32("vs_in_a", 4, DE_LENGTH_OF_ARRAY(pointIndices), 0, a),
477 glu::va::Int32("vs_in_b", 4, DE_LENGTH_OF_ARRAY(pointIndices), 0, b),
478 glu::va::Int32("vs_in_sel", 4, DE_LENGTH_OF_ARRAY(pointIndices), 0, sel)
494 glu::draw(m_context.getRenderContext(), prog.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), vertexArrays,
495 glu::pr::Points(DE_LENGTH_OF_ARRAY(pointIndices), pointIndices));
506 glu::draw(m_context.getRenderContext(), prog.getProgram(), DE_LENGTH_OF_ARRAY(vertexArrays), vertexArrays,
507 glu::pr::Points(DE_LENGTH_OF_ARRAY(pointIndices), pointIndices));
540 ShaderIntegerMixTests::ShaderIntegerMixTests(Context& context, glu::GLSLVersion glslVersion)