Home | History | Annotate | Download | only in functional

Lines Matching refs:attribValue

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