- generate a contiguous set of empty display lists
C SPECIFICATION
PARAMETERS
_param1 Specifies the number of contiguous empty display
lists to be generated.
DESCRIPTION
glGenLists has one argument, _param1. It returns an inte-
ger n such that _param1 contiguous empty display lists,
named n, n+1, ..., n+_param1 -1, are created. If _param1
is 0, if there is no group of _param1 contiguous names
available, or if any error is generated, no display lists
are generated, and 0 is returned.
ERRORS
GL_INVALID_VALUE is generated if _param1 is negative.
GL_INVALID_OPERATION is generated if glGenLists is exe-
cuted between the execution of glBegin and the correspond-
ing execution of glEnd.
ASSOCIATED GETS
glIsList
SEE ALSO
glCallList, glCallLists, glDeleteLists, glNewList
1