Searched refs:activeProgram (Results 1 – 2 of 2) sorted by relevance
/external/angle/src/tests/test_utils/ |
D | ANGLETest.cpp | 1056 GLint activeProgram = 0; in drawQuadPPO() local 1057 glGetIntegerv(GL_CURRENT_PROGRAM, &activeProgram); in drawQuadPPO() 1058 if (activeProgram) in drawQuadPPO() 1083 if (activeProgram) in drawQuadPPO() 1085 glUseProgram(static_cast<GLuint>(activeProgram)); in drawQuadPPO() 1125 GLint activeProgram = 0; in drawIndexedQuad() local 1126 glGetIntegerv(GL_CURRENT_PROGRAM, &activeProgram); in drawIndexedQuad() 1127 if (static_cast<GLuint>(activeProgram) != program) in drawIndexedQuad() 1173 if (static_cast<GLuint>(activeProgram) != program) in drawIndexedQuad() 1175 glUseProgram(static_cast<GLuint>(activeProgram)); in drawIndexedQuad() [all …]
|
/external/deqp/external/openglcts/modules/gles31/ |
D | es31cSeparateShaderObjsTests.cpp | 1567 glw::GLuint activeProgram = 0; in setAndCompareUniforms() local 1570 gl.getProgramPipelineiv(pipeline, GL_ACTIVE_PROGRAM, (int*)&activeProgram); in setAndCompareUniforms() 1572 if ((activeProgram != 0) && ((activeProgram == programA) || (activeProgram == programB))) in setAndCompareUniforms() 1576 location = (activeProgram == programA) ? locationA : locationB; in setAndCompareUniforms() 1619 gl.getUniformiv(activeProgram, location[i], (int*)&retVal[0]); in setAndCompareUniforms() 1623 gl.getUniformuiv(activeProgram, location[i], &retVal[0]); in setAndCompareUniforms() 1627 gl.getUniformfv(activeProgram, location[i], (float*)&retVal[0]); in setAndCompareUniforms() 1812 glw::GLuint activeProgram = 0; in setAndCompareMatrixUniforms() local 1815 gl.getProgramPipelineiv(pipeline, GL_ACTIVE_PROGRAM, (int*)&activeProgram); in setAndCompareMatrixUniforms() 1817 if ((activeProgram != 0) && ((activeProgram == programA) || (activeProgram == programB))) in setAndCompareMatrixUniforms() [all …]
|