Unix and Linux Discussions Tagged with range |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
71,353 |
Shell Programming and Scripting |
|
|
|
1 |
4,736 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,232 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,061 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,640 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
4,185 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
11,245 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
3,394 |
Programming |
|
|
|
9 |
4,236 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,490 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
9,267 |
Shell Programming and Scripting |
|
|
|
1 |
4,323 |
Shell Programming and Scripting |
|
|
|
7 |
2,324 |
Shell Programming and Scripting |
|
|
|
4 |
3,632 |
Shell Programming and Scripting |
|
|
|
6 |
3,638 |
Shell Programming and Scripting |
|
|
|
1 |
3,538 |
Shell Programming and Scripting |
|
|
|
9 |
40,338 |
Shell Programming and Scripting |
|
|
|
9 |
6,711 |
Shell Programming and Scripting |
|
|
|
9 |
3,602 |
Shell Programming and Scripting |
|
|
|
2 |
5,887 |
Shell Programming and Scripting |
|
|
|
2 |
10,218 |
Shell Programming and Scripting |
|
|
|
4 |
2,416 |
Shell Programming and Scripting |
|
|
|
3 |
3,567 |
Shell Programming and Scripting |
|
|
|
4 |
16,096 |
Shell Programming and Scripting |
|
|
|
36 |
129,025 |
IP Networking |
|
|
|
11 |
15,164 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
5,835 |
Shell Programming and Scripting |
|
|
|
0 |
3,066 |
What is on Your Mind? |
|
|
|
8 |
4,036 |
Programming |
|
|
|
5 |
2,631 |
Shell Programming and Scripting |
|
|
|
2 |
2,446 |
Shell Programming and Scripting |
|
|
|
1 |
5,337 |
Shell Programming and Scripting |
|
|
|
3 |
2,386 |
Solaris |
|
|
|
2 |
4,036 |
Shell Programming and Scripting |
|
|
|
2 |
3,948 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,408 |
Solaris |
|
|
|
5 |
3,263 |
Shell Programming and Scripting |
|
|
|
2 |
4,457 |
UNIX and Linux Applications |
|
|
|
0 |
2,057 |
UNIX and Linux RSS News |
|
|
|
4 |
1,975 |
UNIX for Advanced & Expert Users |
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)