1GLLISTBASE(3G) GLLISTBASE(3G)
2
3
4
6 glListBase - set the display-list base for glCallLists
7
8
10 void glListBase( GLuint base )
11
12
14 base Specifies an integer offset that will be added to glCallLists
15 offsets to generate display-list names. The initial value is 0.
16
18 glCallLists specifies an array of offsets. Display-list names are gen‐
19 erated by adding base to each offset. Names that reference valid dis‐
20 play lists are executed; the others are ignored.
21
23 GL_INVALID_OPERATION is generated if glListBase is executed between the
24 execution of glBegin and the corresponding execution of glEnd.
25
27 glGet with argument GL_LIST_BASE
28
30 glCallLists(3G)
31
32
33
34 GLLISTBASE(3G)