1GLLISTBASE(3G) OpenGL Manual GLLISTBASE(3G)
2
3
4
6 glListBase - set the display-list base for glCallLists()
7
9 void glListBase(GLuint base);
10
12 base
13 Specifies an integer offset that will be added to glCallLists()
14 offsets to generate display-list names. The initial value is 0.
15
17 glCallLists() specifies an array of offsets. Display-list names are
18 generated by adding base to each offset. Names that reference valid
19 display lists are executed; the others are ignored.
20
22 GL_INVALID_OPERATION is generated if glListBase is executed between the
23 execution of glBegin() and the corresponding execution of glEnd().
24
26 glGet() with argument GL_LIST_BASE
27
29 glCallLists()
30
32 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
33 under the SGI Free Software B License. For details, see
34 http://oss.sgi.com/projects/FreeB/.
35
37 opengl.org
38
39
40
41opengl.org 06/10/2014 GLLISTBASE(3G)