1GLGENLISTS(3G)                                                  GLGENLISTS(3G)
2
3
4

NAME

6       glGenLists - generate a contiguous set of empty display lists
7
8

C SPECIFICATION

10       GLuint glGenLists( GLsizei range )
11
12

PARAMETERS

14       range  Specifies  the  number  of  contiguous empty display lists to be
15              generated.
16

DESCRIPTION

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

ERRORS

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

ASSOCIATED GETS

31       glIsList
32

SEE ALSO

34       glCallList(3G), glCallLists(3G), glDeleteLists(3G), glNewList(3G)
35
36
37
38                                                                GLGENLISTS(3G)
Impressum