Lines Matching refs:attribValue
141 StateQueryMemoryWriteGuard<GLfloat[4]> attribValue; in verifyCurrentVertexAttribf() local
142 gl.glGetVertexAttribfv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in verifyCurrentVertexAttribf()
144 attribValue.verifyValidity(testCtx); in verifyCurrentVertexAttribf()
146 if (attribValue[0] != x || attribValue[1] != y || attribValue[2] != z || attribValue[3] != w) in verifyCurrentVertexAttribf()
150 …<< "got [" << attribValue[0] << "," << attribValue[1] << "," << attribValue[2] << "," << attribVal… in verifyCurrentVertexAttribf()
161 StateQueryMemoryWriteGuard<GLint[4]> attribValue; in verifyCurrentVertexAttribIi() local
162 gl.glGetVertexAttribIiv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in verifyCurrentVertexAttribIi()
164 attribValue.verifyValidity(testCtx); in verifyCurrentVertexAttribIi()
166 if (attribValue[0] != x || attribValue[1] != y || attribValue[2] != z || attribValue[3] != w) in verifyCurrentVertexAttribIi()
170 …<< "got [" << attribValue[0] << "," << attribValue[1] << "," << attribValue[2] << "," << attribVal… in verifyCurrentVertexAttribIi()
181 StateQueryMemoryWriteGuard<GLuint[4]> attribValue; in verifyCurrentVertexAttribIui() local
182 gl.glGetVertexAttribIuiv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in verifyCurrentVertexAttribIui()
184 attribValue.verifyValidity(testCtx); in verifyCurrentVertexAttribIui()
186 if (attribValue[0] != x || attribValue[1] != y || attribValue[2] != z || attribValue[3] != w) in verifyCurrentVertexAttribIui()
190 …<< "got [" << attribValue[0] << "," << attribValue[1] << "," << attribValue[2] << "," << attribVal… in verifyCurrentVertexAttribIui()
201 StateQueryMemoryWriteGuard<GLint[4]> attribValue; in verifyCurrentVertexAttribConversion() local
202 gl.glGetVertexAttribiv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in verifyCurrentVertexAttribConversion()
204 attribValue.verifyValidity(testCtx); in verifyCurrentVertexAttribConversion()
221 if (attribValue[0] < referenceAsGLintMin[0] || attribValue[0] > referenceAsGLintMax[0] || in verifyCurrentVertexAttribConversion()
222 attribValue[1] < referenceAsGLintMin[1] || attribValue[1] > referenceAsGLintMax[1] || in verifyCurrentVertexAttribConversion()
223 attribValue[2] < referenceAsGLintMin[2] || attribValue[2] > referenceAsGLintMax[2] || in verifyCurrentVertexAttribConversion()
224 attribValue[3] < referenceAsGLintMin[3] || attribValue[3] > referenceAsGLintMax[3]) in verifyCurrentVertexAttribConversion()
233 << attribValue[0] << ", " in verifyCurrentVertexAttribConversion()
234 << attribValue[1] << ", " in verifyCurrentVertexAttribConversion()
235 << attribValue[2] << ", " in verifyCurrentVertexAttribConversion()
236 << attribValue[3] << " " in verifyCurrentVertexAttribConversion()
984 StateQueryMemoryWriteGuard<GLfloat[4]> attribValue; in test() local
985 glGetVertexAttribfv(index, GL_CURRENT_VERTEX_ATTRIB, attribValue); in test()
986 attribValue.verifyValidity(m_testCtx); in test()
988 …if (attribValue[0] != 0.0f || attribValue[1] != 0.0f || attribValue[2] != 0.0f || attribValue[3] !… in test()
992 …<< "got [" << attribValue[0] << "," << attribValue[1] << "," << attribValue[2] << "," << attribVal… in test()