glDeleteLists

The glDeleteLists function deletes a contiguous group of display lists.

void glDeleteLists(
  GLuint list,  GLsizei range);

Parameters

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

Remarks

The glDeleteLists function causes a contiguous group of display lists to be deleted. The list parameter 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 ≤ d ≤ 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 zero, nothing happens.

Error Codes

The following are the error codes generated and their conditions.

Error code Condition
GL_INVALID_VALUE range was negative.
GL_INVALID_OPERATION glDeleteLists was called between a call to glBegin and the corresponding call to glEnd.

Requirements

**  Windows NT/2000:** Requires Windows NT 3.5 or later.
**  Windows 95/98:** Requires Windows 95 or later. Available as a redistributable for Windows 95.
**  Header:** Declared in Gl.h.
**  Library:** Use Opengl32.lib.

See Also

glBegin, glCallList, glCallLists, glEnd, glGenLists, glIsList, glNewList