Lines Matching full:minindex
612 int minIndex = 0, maxIndex = 0;
617 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
618 if (minIndex != 0) {
622 count, -minIndex);
627 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
628 if (minIndex != 0) {
632 count, -minIndex);
637 GLUtils::minmax<unsigned int>((unsigned int *)indices, count, &minIndex, &maxIndex);
638 if (minIndex != 0) {
642 count, -minIndex);
649 ctx->sendVertexAttributes(minIndex, maxIndex - minIndex + 1);