Unix and Linux Discussions Tagged with lists |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
7,664 |
Shell Programming and Scripting |
|
|
|
9 |
3,455 |
Shell Programming and Scripting |
|
|
|
3 |
7,079 |
Shell Programming and Scripting |
|
|
|
3 |
2,786 |
Shell Programming and Scripting |
|
|
|
8 |
25,362 |
Shell Programming and Scripting |
|
|
|
0 |
1,695 |
IT Security RSS |
|
|
|
0 |
1,433 |
Software Releases - RSS News |
|
|
|
4 |
23,304 |
Shell Programming and Scripting |
|
|
|
1 |
5,063 |
Shell Programming and Scripting |
|
|
|
2 |
30,500 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,392 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
10,930 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
7,647 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
11,780 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,180 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
5 |
16,339 |
Programming |
|
|
|
1 |
3,216 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
7,520 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,354 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,481 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,032 |
UNIX for Dummies Questions & Answers |
GLDELETELISTS(3G) GLDELETELISTS(3G)
NAME
glDeleteLists - delete a contiguous group of display lists
C SPECIFICATION
void glDeleteLists( GLuint list,
GLsizei range )
PARAMETERS
list Specifies the integer name of the first display list to delete.
range Specifies the number of display lists to delete.
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 <= 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 0, nothing happens.
ERRORS
GL_INVALID_VALUE is generated if range is negative.
GL_INVALID_OPERATION is generated if glDeleteLists is executed between the execution of glBegin and the corresponding execution of glEnd.
SEE ALSO
glCallList(3G), glCallLists(3G), glGenLists(3G), glIsList(3G), glNewList(3G)
GLDELETELISTS(3G)