Home | History | Annotate | Download | only in functional

Lines Matching refs:attribValue

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