Searched defs:numActiveUniforms (Results 1 - 5 of 5) sorted by relevance
/external/deqp/modules/gles31/functional/ |
H A D | es31fNegativeStateApiTests.cpp | 784 GLint numActiveUniforms = -1; local 786 ctx.glGetProgramiv (program.getProgram(), GL_ACTIVE_UNIFORMS, &numActiveUniforms); 787 ctx.getLog() << TestLog::Message << "// GL_ACTIVE_UNIFORMS = " << numActiveUniforms << " (expected 4)." << TestLog::EndMessage; 801 ctx.glGetActiveUniform(program.getProgram(), numActiveUniforms, 0, 0, 0, 0, 0); 820 GLint numActiveUniforms = -1; local 824 ctx.glGetProgramiv (program.getProgram(), GL_ACTIVE_UNIFORMS, &numActiveUniforms); 825 ctx.getLog() << TestLog::Message << "// GL_ACTIVE_UNIFORMS = " << numActiveUniforms << " (expected 4)." << TestLog::EndMessage; 842 invalidUniformIndices.push_back(numActiveUniforms-1+excess);
|
H A D | es31fNegativeShaderApiTests.cpp | 940 GLint numActiveUniforms = -1; local 949 ctx.glGetProgramiv(program.getProgram(), GL_ACTIVE_UNIFORMS, &numActiveUniforms); 952 ctx.getLog() << TestLog::Message << "// GL_ACTIVE_UNIFORMS = " << numActiveUniforms << TestLog::EndMessage;
|
/external/deqp/modules/glshared/ |
H A D | glsUniformBlockCase.cpp | 1169 int numActiveUniforms = 0; local 1172 gl.getProgramiv(program, GL_ACTIVE_UNIFORMS, &numActiveUniforms); 1206 if (numActiveUniforms > 0) 1209 std::vector<deUint32> uniformIndices(numActiveUniforms); 1210 for (int i = 0; i < numActiveUniforms; i++) 1213 std::vector<int> types (numActiveUniforms); 1214 std::vector<int> sizes (numActiveUniforms); 1215 std::vector<int> nameLengths (numActiveUniforms); 1216 std::vector<int> blockIndices (numActiveUniforms); 1217 std::vector<int> offsets (numActiveUniforms); [all...] |
/external/deqp/modules/gles2/functional/ |
H A D | es2fUniformApiTests.cpp | 1254 GLint numActiveUniforms = 0; local 1259 GLU_CHECK_CALL(glGetProgramiv(programGL, GL_ACTIVE_UNIFORMS, &numActiveUniforms)); 1260 log << TestLog::Message << "// Number of active uniforms reported: " << numActiveUniforms << TestLog::EndMessage; 1265 for (int unifNdx = 0; unifNdx < numActiveUniforms; unifNdx++)
|
/external/deqp/modules/gles3/functional/ |
H A D | es3fUniformApiTests.cpp | 1451 GLint numActiveUniforms = 0; local 1456 GLU_CHECK_CALL(glGetProgramiv(programGL, GL_ACTIVE_UNIFORMS, &numActiveUniforms)); 1457 log << TestLog::Message << "// Number of active uniforms reported: " << numActiveUniforms << TestLog::EndMessage; 1462 for (int unifNdx = 0; unifNdx < numActiveUniforms; unifNdx++)
|
Completed in 176 milliseconds