Searched defs:uniformIndex (Results 1 - 4 of 4) sorted by relevance

/external/deqp/modules/gles31/functional/
H A Des31fShaderStateQueryTests.cpp133 const glw::GLuint uniformIndex = 0; local
137 gl.getActiveUniformsiv(program.getProgram(), 1, &uniformIndex, GL_UNIFORM_TYPE, &type);
H A Des31fProgramInterfaceQueryTests.cpp1443 glw::GLuint uniformIndex; local
1456 uniformIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "u_uniformWithALongName");
1459 if (uniformIndex == GL_INVALID_INDEX)
1508 gl.getProgramResourceName(program.getProgram(), GL_UNIFORM, uniformIndex, querySizes[ndx].querySize, (querySizes[ndx].returnLength) ? (&written) : (DE_NULL), buffer);
1569 glw::GLuint uniformIndex; local
1582 uniformIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "u_uniform");
1585 if (uniformIndex == GL_INVALID_INDEX)
1623 gl.getProgramResourceiv(program.getProgram(), GL_UNIFORM, uniformIndex, querySizes[ndx].numProps, props, querySizes[ndx].bufferSize, (querySizes[ndx].returnLength) ? (&written) : (DE_NULL), params);
/external/mesa3d/src/mesa/main/
H A Duniforms.c766 _mesa_GetActiveUniformName(GLuint program, GLuint uniformIndex, argument
792 if (uniformIndex >= shProg->NumUserUniformStorage) {
799 shProg->UniformStorage[uniformIndex].name);
/external/deqp/modules/gles3/functional/
H A Des3fShaderStateQueryTests.cpp1545 const GLuint uniformIndex = uniformIndices[ndx]; local
1548 glGetActiveUniformsiv(program, 1, &uniformIndex, GL_UNIFORM_NAME_LENGTH, &uniformNameLen);
1566 const GLuint uniformIndex = uniformIndices[ndx]; local
1571 glGetActiveUniform(program, uniformIndex, DE_LENGTH_OF_ARRAY(buffer), &written, &size, &type, buffer);
1583 glGetActiveUniform(program, uniformIndex, 1, &written, &size, &type, buffer);
1714 StateQueryMemoryWriteGuard<GLuint> uniformIndex; local
1715 glGetUniformIndices(program, 1, uniformNames, &uniformIndex);
1716 uniformIndex.verifyValidity(m_testCtx);
1718 verifyActiveUniformParam(m_testCtx, *this, program, uniformIndex, GL_UNIFORM_TYPE, uniformTypes[ndx].type);
1719 verifyActiveUniformParam(m_testCtx, *this, program, uniformIndex, GL_UNIFORM_SIZ
[all...]

Completed in 200 milliseconds