Searched refs:activeVariables (Results 1 - 4 of 4) sorted by relevance

/external/deqp/framework/opengl/
H A DgluProgramInterfaceQuery.cpp61 static void getProgramInterfaceActiveVariables (const glw::Functions& gl, deUint32 program, deUint32 programInterface, deUint32 index, std::vector<int>& activeVariables) argument
65 activeVariables.resize(numActiveVariables);
69 gl.getProgramResourceiv(program, programInterface, index, 1, &queryParam, (int)activeVariables.size(), DE_NULL, &activeVariables[0]);
80 getProgramInterfaceActiveVariables(gl, program, programInterface, index, info.activeVariables);
H A DgluProgramInterfaceQuery.hpp46 std::vector<int> activeVariables; //!< GL_ACTIVE_VARIABLES member in struct:glu::InterfaceBlockInfo
/external/deqp/modules/gles31/functional/
H A Des31fShaderSharedVarTests.cpp316 const InterfaceVariableInfo outVarInfo = getProgramInterfaceVariableInfo(gl, program, GL_BUFFER_VARIABLE, outBlockInfo.activeVariables[0]);
H A Des31fProgramInterfaceQueryTests.cpp2150 std::vector<glw::GLint> activeVariables;
2180 activeVariables.resize(numActiveVariables + 1, -2);
2182 gl.getProgramResourceiv(program.getProgram(), GL_ATOMIC_COUNTER_BUFFER, bufferNdx, 1, &activeVariablesProp, numActiveVariables, &written, &activeVariables[0]);
2192 if (activeVariables.back() != -2)
2199 activeVariables.pop_back();
2207 for (int varNdx = 0; varNdx < (int)activeVariables.size(); ++varNdx)
2211 builder << activeVariables[varNdx];
2217 for (int ndx = 0; ndx < (int)activeVariables.size(); ++ndx)
2224 gl.getProgramResourceiv(program.getProgram(), GL_UNIFORM, activeVariables[ndx], 1, &nameLengthProp, 1, &written, &nameLength);
2237 gl.getProgramResourceName(program.getProgram(), GL_UNIFORM, activeVariables[nd
[all...]

Completed in 93 milliseconds