1GLDELETELISTS(3G) OpenGL Manual GLDELETELISTS(3G)
2
3
4
6 glDeleteLists - delete a contiguous group of display lists
7
9 void glDeleteLists(GLuint list, GLsizei range);
10
12 list
13 Specifies the integer name of the first display list to delete.
14
15 range
16 Specifies the number of display lists to delete.
17
19 glDeleteLists causes a contiguous group of display lists to be deleted.
20 list is the name of the first display list to be deleted, and range is
21 the number of display lists to delete. All display lists d with list <=
22 d <= list + range - 1 are deleted.
23
24 All storage locations allocated to the specified display lists are
25 freed, and the names are available for reuse at a later time. Names
26 within the range that do not have an associated display list are
27 ignored. If range is 0, nothing happens.
28
30 GL_INVALID_VALUE is generated if range is negative.
31
32 GL_INVALID_OPERATION is generated if glDeleteLists is executed between
33 the execution of glBegin() and the corresponding execution of glEnd().
34
36 glCallList(), glCallLists(), glGenLists(), glIsList(), glNewList()
37
39 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
40 under the SGI Free Software B License. For details, see
41 http://oss.sgi.com/projects/FreeB/.
42
44 opengl.org
45
46
47
48opengl.org 06/10/2014 GLDELETELISTS(3G)