1GLGENLISTS(3G) GLGENLISTS(3G)
2
3
4
6 glGenLists - generate a contiguous set of empty display lists
7
8
10 GLuint glGenLists( GLsizei range )
11
12
14 range Specifies the number of contiguous empty display lists to be
15 generated.
16
18 glGenLists has one argument, range. It returns an integer n such that
19 range contiguous empty display lists, named n, n+1, ..., n+range -1,
20 are created. If range is 0, if there is no group of range contiguous
21 names available, or if any error is generated, no display lists are
22 generated, and 0 is returned.
23
25 GL_INVALID_VALUE is generated if range is negative.
26
27 GL_INVALID_OPERATION is generated if glGenLists is executed between the
28 execution of glBegin and the corresponding execution of glEnd.
29
31 glIsList
32
34 glCallList(3G), glCallLists(3G), glDeleteLists(3G), glNewList(3G)
35
36
37
38 GLGENLISTS(3G)