Lines Matching full:minindex
582 int minIndex = 0, maxIndex = 0;
587 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
588 if (minIndex != 0) {
592 count, -minIndex);
597 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
598 if (minIndex != 0) {
602 count, -minIndex);
607 GLUtils::minmax<unsigned int>((unsigned int *)indices, count, &minIndex, &maxIndex);
608 if (minIndex != 0) {
612 count, -minIndex);
619 ctx->sendVertexData(minIndex, maxIndex - minIndex + 1);