• Home
  • Raw
  • Download

Lines Matching refs:attribValue

122 	StateQueryMemoryWriteGuard<GLfloat[4]> attribValue;  in verifyCurrentVertexAttribf()  local
123 gl.glGetVertexAttribfv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in verifyCurrentVertexAttribf()
125 attribValue.verifyValidity(testCtx); in verifyCurrentVertexAttribf()
127 if (attribValue[0] != x || attribValue[1] != y || attribValue[2] != z || attribValue[3] != w) in verifyCurrentVertexAttribf()
131 …<< "got [" << attribValue[0] << "," << attribValue[1] << "," << attribValue[2] << "," << attribVal… in verifyCurrentVertexAttribf()
142 StateQueryMemoryWriteGuard<GLint[4]> attribValue; in verifyCurrentVertexAttribConversion() local
143 gl.glGetVertexAttribiv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in verifyCurrentVertexAttribConversion()
145 attribValue.verifyValidity(testCtx); in verifyCurrentVertexAttribConversion()
162 if (attribValue[0] < referenceAsGLintMin[0] || attribValue[0] > referenceAsGLintMax[0] || in verifyCurrentVertexAttribConversion()
163 attribValue[1] < referenceAsGLintMin[1] || attribValue[1] > referenceAsGLintMax[1] || in verifyCurrentVertexAttribConversion()
164 attribValue[2] < referenceAsGLintMin[2] || attribValue[2] > referenceAsGLintMax[2] || in verifyCurrentVertexAttribConversion()
165 attribValue[3] < referenceAsGLintMin[3] || attribValue[3] > referenceAsGLintMax[3]) in verifyCurrentVertexAttribConversion()
174 << attribValue[0] << ", " in verifyCurrentVertexAttribConversion()
175 << attribValue[1] << ", " in verifyCurrentVertexAttribConversion()
176 << attribValue[2] << ", " in verifyCurrentVertexAttribConversion()
177 << attribValue[3] << " " in verifyCurrentVertexAttribConversion()
822 StateQueryMemoryWriteGuard<GLfloat[4]> attribValue; in test() local
823 glGetVertexAttribfv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in test()
824 attribValue.verifyValidity(m_testCtx); in test()
826 …if (attribValue[0] != 0.0f || attribValue[1] != 0.0f || attribValue[2] != 0.0f || attribValue[3] !… in test()
830 …<< "got [" << attribValue[0] << "," << attribValue[1] << "," << attribValue[2] << "," << attribVal… in test()