Lines Matching defs:range
1368 /* See if the list_id falls in the range contained in this texture atlas */
13379 _mesa_DeleteLists(GLuint list, GLsizei range)
13386 if (range < 0) {
13391 if (range > 1) {
13403 for (i = list; i < list + range; i++) {
13411 * Return a display list number, n, such that lists n through n+range-1
13415 _mesa_GenLists(GLsizei range)
13422 if (range < 0) {
13426 if (range == 0) {
13435 base = _mesa_HashFindFreeKeyBlock(ctx->Shared->DisplayList, range);
13439 for (i = 0; i < range; i++) {
13446 range > 16) {
13447 /* "range > 16" is a rough heuristic to guess when glGenLists might be
13458 atlas->numBitmaps = range;