Home | History | Annotate | Download | only in functional

Lines Matching refs:m_samplerShader

1075 	glu::ShaderProgram*	m_samplerShader;
1091 , m_samplerShader (DE_NULL)
1207 if (m_samplerShader)
1209 delete m_samplerShader;
1210 m_samplerShader = DE_NULL;
1350 m_samplerShader = new glu::ShaderProgram(m_context.getRenderContext(), glu::ProgramSources() << glu::VertexSource(vertexShaderSource) << glu::FragmentSource(tcu::StringTemplate(fragmentShaderSource).specialize(fragmentArguments)));
1351 m_testCtx.getLog() << *m_samplerShader;
1353 if (!m_samplerShader->isOk())
1449 const int posLocation = gl.getAttribLocation(m_samplerShader->getProgram(), "a_position");
1450 const int samplerLocation = gl.getUniformLocation(m_samplerShader->getProgram(), "u_sampler");
1451 const int maxSamplesLocation = gl.getUniformLocation(m_samplerShader->getProgram(), "u_maxSamples");
1452 const int layerLocation = gl.getUniformLocation(m_samplerShader->getProgram(), "u_layer");
1453 const int valueLocation = gl.getUniformLocation(m_samplerShader->getProgram(), "u_cmpValue");
1476 gl.useProgram(m_samplerShader->getProgram());