Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gldeletelists(3g) [redhat man page]

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)

Check Out this Related Man Page

GLCALLLIST(3G)															    GLCALLLIST(3G)

NAME
glCallList - execute a display list C SPECIFICATION
void glCallList( GLuint list ) PARAMETERS
list Specifies the integer name of the display list to be executed. DESCRIPTION
glCallList causes the named display list to be executed. The commands saved in the display list are executed in order, just as if they were called without using a display list. If list has not been defined as a display list, glCallList is ignored. glCallList can appear inside a display list. To avoid the possibility of infinite recursion resulting from display lists calling one another, a limit is placed on the nesting level of display lists during display-list execution. This limit is at least 64, and it depends on the implementation. GL state is not saved and restored across a call to glCallList. Thus, changes made to GL state during the execution of a display list remain after execution of the display list is completed. Use glPushAttrib, glPopAttrib, glPushMatrix, and glPopMatrix to preserve GL state across glCallList calls. NOTES
Display lists can be executed between a call to glBegin and the corresponding call to glEnd, as long as the display list includes only com- mands that are allowed in this interval. ASSOCIATED GETS
glGet with argument GL_MAX_LIST_NESTING glIsList SEE ALSO
glCallLists, glDeleteLists, glGenLists, glNewList, glPushAttrib, glPushMatrix GLCALLLIST(3G)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Compare lists of files

If I had a list of numbers in two different files, what would be the fastest and easiest way to find out which numbers in list B are not in list A without reading each number in list B one at a time and using grep thousands of times against list A? I have two very long lists of numbers and the... (4 Replies)
Discussion started by: keelba
4 Replies

2. Shell Programming and Scripting

search and delete a line

Folks, I have a set of list that contains file names. I want to search through each of the list and delete any file that is found in the list. eg. LIST_A contains: aaa bbb ccc ddd eeee LIST_B contains: aab aac adb aed assuming I want to... (6 Replies)
Discussion started by: odogbolu98
6 Replies

3. UNIX for Dummies Questions & Answers

set display

Hi All: An elementary Unix Question, How can i set the display number and run a program in that display. If i type the name of the executable the program opens in the console(display number 0), however, i want it to open in another display number. How can i do that. Appreciate the help... (2 Replies)
Discussion started by: preetham
2 Replies

4. UNIX for Dummies Questions & Answers

why can't I delete this file?

Can anyone tell me why I can't delete this file? I am logged in as the owner of the file i.e. apfadmin. I suspect the "l" in the execute for the group but I don't know what that is or what it means. Thanks in advance for any help. les021 AM/scenarios/JobDB2.bad> ls -al -rw-r-lr-- 1... (2 Replies)
Discussion started by: mrprietzel
2 Replies

5. Shell Programming and Scripting

How can I get the name of file

find $PATH1 -mtime +2 -exec rm -f {} \; I can delete file was modify 2 days ago. But I don't know the name of file I have deleted. How can I get the name of file I have deleted. Thanks. (2 Replies)
Discussion started by: YoungBlood
2 Replies

6. UNIX for Dummies Questions & Answers

How to delete a file with special characters

I don't now exactly how I did it, but I created a file named " -C " cexdi:/home1 $ls -lt total 1801336 -rw------- 1 cexdi ced-group 922275840 23 mars 10:03 -C How do I delete this file ? cexdi:/home1 $rm -C rm: invalid option -- C Syntax : rm filename ... Doesn't work...... (5 Replies)
Discussion started by: yveslagace
5 Replies

7. Shell Programming and Scripting

How to delete a particular string from different locations ?

I want to delete a particular string ( ex : berkely@abc.com ) from different locations and in different files in each location. Please help me ! (4 Replies)
Discussion started by: nani_ynm
4 Replies

8. Shell Programming and Scripting

How to get the files lists

Hi All, Need the help in getting the file list which are generated for the time period. example if i want to get the list of file generated between 11 to 12 clock. i used the find command search the files with -cmin flag with -60. find /home/test/* -cmin -60 -type f -exec ls {} \; ... (2 Replies)
Discussion started by: nmadhuhb
2 Replies

9. UNIX for Dummies Questions & Answers

to delete an invalid file

there is a file is generated from my program due to undefined filename. -rw-r--r-- 1 angie angie 8644055 Jun 22 09:17 Ô$ÿÿÿÿÿÆ may i know how to delete this file..??? thanks in advance... :) (5 Replies)
Discussion started by: chxxangie
5 Replies

10. UNIX for Dummies Questions & Answers

Date range command (and delete)

Hello. Newbie here.... I basically have a directory with tens of thousands (literally) subdirectories and need to delete those that are older than 2008 (hundreds) with all their contents. I've looked through all the RM parameters and still can't quite figure out how to specify the data range... (7 Replies)
Discussion started by: pqmomba8
7 Replies

11. Shell Programming and Scripting

For loop with two variable lists?

Hello everyone, I was hoping for some help with a scripting question. I am trying to process two lists in a for statement and need to have the lists match up. So far the variables I have match up by line in the file. So far I have the test script below. #!/bin/ksh # for loop to test with two... (5 Replies)
Discussion started by: thefarside2004
5 Replies

12. Shell Programming and Scripting

delete multiple lines by line number

I have file with 10000 records and i need to delete the lines in single shot based on line number range say from 10 to 51 , 53 to 59 , 105 to 107, 311 to 592 etc... between range works fine for me but how to achive for above case? please help sed '10,51 {d}' infile > outfile (5 Replies)
Discussion started by: zooby
5 Replies

13. Shell Programming and Scripting

Deleting column using awk

How Can we delete a range of coloumns using awk? (or any other method is fine) If we have a file which has about 200 coloumns. I need to delete a particular range lets say for eg from $6 to $119 Can we do this using cut, if yes the cut command would also be helpful. many thanks in... (4 Replies)
Discussion started by: Sri3001
4 Replies

14. UNIX for Dummies Questions & Answers

Deleted files between date range

Dear Friends, I have HP_ux 11.31 and want to delete some unwanted very old log files between two date range. Please help in the matter. Regards, Bhagawati Pandey (6 Replies)
Discussion started by: BPANDEY
6 Replies

15. Shell Programming and Scripting

How to generate all combinations of group lists at the same time?

Hi, everyone I have a group lists like this (more lines are omitted: a b c d E F G H .... I want to generate all combinations of two elements in each group line. What I expected is this: a b a c a d b c b d c d E F E G E H F G F H G H (8 Replies)
Discussion started by: nengcheng
8 Replies