Searched refs:maxIndex (Results 1 – 4 of 4) sorted by relevance
/device/generic/goldfish-opengl/system/GLESv2_enc/ |
D | GL2Encoder.cpp | 621 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 …]
|
D | GLESv2Validation.cpp | 840 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()
|
D | GL2Encoder.h | 141 int* minIndex, int* maxIndex);
|
/device/generic/goldfish-opengl/system/GLESv1_enc/ |
D | GLEncoder.cpp | 592 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()
|