Home | History | Annotate | Download | only in libGL

Lines Matching refs:maxIndex

67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
70 *maxIndex = indices[0];
75 if(*maxIndex < indices[i]) *maxIndex = indices[i];
79 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
83 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex);
87 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex);
91 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex);
130 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex);
152 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex);