HomeSort by relevance Sort by last modified time
    Searched defs:attribValue (Results 1 - 4 of 4) sorted by null

  /external/deqp/modules/glshared/
glsRandomShaderProgram.cpp 194 const tcu::Vec4 attribValue = rr::readVertexAttribFloat(inputs[attribNdx], packet->instanceNdx, packet->vertexNdx);
196 access.component(0).asFloat(ndx) = attribValue[0];
197 if (numComponents >= 2) access.component(1).asFloat(ndx) = attribValue[1];
198 if (numComponents >= 3) access.component(2).asFloat(ndx) = attribValue[2];
199 if (numComponents >= 4) access.component(3).asFloat(ndx) = attribValue[3];
glsDrawTest.cpp     [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderStateQueryTests.cpp 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] << "]
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderStateQueryTests.cpp 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] << "]
    [all...]

Completed in 145 milliseconds