1GLDELETELISTS(3G) GLDELETELISTS(3G)
2
3
4
6 glDeleteLists - delete a contiguous group of display lists
7
8
10 void glDeleteLists( GLuint list,
11 GLsizei range )
12
13
15 list Specifies the integer name of the first display list to delete.
16
17 range Specifies the number of display lists to delete.
18
20 glDeleteLists causes a contiguous group of display lists to be deleted.
21 list is the name of the first display list to be deleted, and range is
22 the number of display lists to delete. All display lists d with list ≤
23 d ≤ list + range - 1 are deleted.
24
25 All storage locations allocated to the specified display lists are
26 freed, and the names are available for reuse at a later time. Names
27 within the range that do not have an associated display list are
28 ignored. If range is 0, nothing happens.
29
31 GL_INVALID_VALUE is generated if range is negative.
32
33 GL_INVALID_OPERATION is generated if glDeleteLists is executed between
34 the execution of glBegin and the corresponding execution of glEnd.
35
37 glCallList(3G), glCallLists(3G), glGenLists(3G), glIsList(3G),
38 glNewList(3G)
39
40
41
42 GLDELETELISTS(3G)