HomeSort by relevance Sort by last modified time
    Searched defs:samplerLoc (Results 1 - 6 of 6) sorted by null

  /external/deqp/modules/gles2/performance/
es2pTextureCases.cpp 200 int samplerLoc = gl.getUniformLocation(program, (string("u_sampler") + de::toString(texNdx)).c_str());
201 gl.uniform1i(samplerLoc, texNdx);
  /external/deqp/modules/gles3/performance/
es3pTextureCases.cpp 227 int samplerLoc = gl.getUniformLocation(program, (string("u_sampler") + de::toString(texNdx)).c_str());
228 gl.uniform1i(samplerLoc, texNdx);
  /external/deqp/modules/glshared/
glsSamplerObjectTest.cpp 297 GLuint samplerLoc = (GLuint)-1;
303 samplerLoc = gl.getUniformLocation(m_program->getProgram(), "u_sampler");
304 TCU_CHECK(samplerLoc != (GLuint)-1);
315 gl.uniform1i(samplerLoc, 0);
316 GLU_EXPECT_NO_ERROR(gl.getError(), "glUniform1i(samplerLoc, 0)");
    [all...]
  /external/deqp/modules/egl/
teglImageFormatTests.cpp 429 GLuint samplerLoc = gl.getUniformLocation(glProgram, "u_sampler");
430 TCU_CHECK_MSG((int)samplerLoc != (int)-1, "Couldn't find uniform u_sampler");
433 GLU_CHECK_GLW_CALL(gl, uniform1i(samplerLoc, 0));
    [all...]
  /external/deqp/modules/gles31/functional/
es31fOpaqueTypeIndexingTests.cpp 546 const int samplerLoc = gl.getUniformLocation(executor->getProgram(), samplerName.c_str());
548 if (samplerNdx > maxIndex && samplerLoc < 0)
551 TCU_CHECK_MSG(samplerLoc >= 0, (string("No location for uniform '") + samplerName + "' found").c_str());
556 gl.uniform1i(samplerLoc, samplerNdx);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderTextureFunctionTests.cpp     [all...]

Completed in 360 milliseconds