Home
last modified time | relevance | path

Searched refs:maxIndex (Results 1 – 4 of 4) sorted by relevance

/device/generic/goldfish-opengl/system/GLESv2_enc/
DGL2Encoder.cpp621 GLint maxIndex; in isValidVertexAttribIndex() local
622 ctx->glGetIntegerv(self, GL_MAX_VERTEX_ATTRIBS, &maxIndex); in isValidVertexAttribIndex()
623 return indx < maxIndex; in isValidVertexAttribIndex()
1045 GLint maxIndex; in s_glGetVertexAttribiv() local
1046 ctx->glGetIntegerv(self, GL_MAX_VERTEX_ATTRIBS, &maxIndex); in s_glGetVertexAttribiv()
1047 SET_ERROR_IF(!(index < maxIndex), GL_INVALID_VALUE); in s_glGetVertexAttribiv()
1058 GLint maxIndex; in s_glGetVertexAttribfv() local
1059 ctx->glGetIntegerv(self, GL_MAX_VERTEX_ATTRIBS, &maxIndex); in s_glGetVertexAttribfv()
1060 SET_ERROR_IF(!(index < maxIndex), GL_INVALID_VALUE); in s_glGetVertexAttribfv()
1071 GLint maxIndex; in s_glGetVertexAttribPointerv() local
[all …]
DGLESv2Validation.cpp840 GLint maxIndex; in vertexAttribIndexRangeErrorMsg() local
841 ctx->glGetIntegerv(ctx, GL_MAX_VERTEX_ATTRIBS, &maxIndex); in vertexAttribIndexRangeErrorMsg()
842 ss << "Invalid vertex attribute index. Wanted index: " << index << ". Max index: " << maxIndex; in vertexAttribIndexRangeErrorMsg()
DGL2Encoder.h141 int* minIndex, int* maxIndex);
/device/generic/goldfish-opengl/system/GLESv1_enc/
DGLEncoder.cpp592 int minIndex = 0, maxIndex = 0; in s_glDrawElements() local
597 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex); in s_glDrawElements()
607 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex); in s_glDrawElements()
617 GLUtils::minmax<unsigned int>((unsigned int *)indices, count, &minIndex, &maxIndex); in s_glDrawElements()
629 ctx->sendVertexData(minIndex, maxIndex - minIndex + 1); in s_glDrawElements()