[Front] [Reference] [Imp. Guide] [Index]

glDeleteLists
[Prev] [Next]

glDeleteLists: delete a contiguous group of display lists.

C Specification | Parameters | Description | Errors | See Also

[Up] C Specification

void glDeleteLists(
    GLuint	 list,
    GLsizei	 range)

[Up] Parameters

list
Specifies the integer name of the first display list to delete.
range
Specifies the number of display lists to delete.

[Up] Description

glDeleteLists causes a contiguous group of display lists to be deleted. list is the name of the first display list to be deleted, and range is the number of display lists to delete. All display lists d with list .le. d .le. list + range - 1 are deleted.

All storage locations allocated to the specified display lists are freed, and the names are available for reuse at a later time. Names within the range that do not have an associated display list are ignored. If range is 0, nothing happens.

[Up] Errors

[Up] See Also

glCallList,
glCallLists,
glGenLists,
glIsList,
glNewList

[Prev] [Next]
Front Reference [Imp. Guide] Index