Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glcalllist(3g) [osx 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)

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(3G), glDeleteLists(3G), glGenLists(3G), glNewList(3G), glPushAttrib(3G), glPushMatrix(3G) GLCALLLIST(3G)
Man Page

14 More Discussions You Might Find Interesting

1. 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

2. UNIX for Dummies Questions & Answers

admintool : error display..

hi, i did the following 1) which admintool /bin/admintool 2) admintool Error: Can't open display: how to set the display then? i am using netterm to telnet to my sun server. (6 Replies)
Discussion started by: yls177
6 Replies

3. UNIX for Dummies Questions & Answers

Retrieving the execution time of a completed command

Hello, I am new to this forum and relatively new to unix, but hope to become an expert soon! My question is: How can I find out the execution time of a command that has already completed execution? More specifically, I launched a Python script to populate a PostgreSQL database on Suse... (2 Replies)
Discussion started by: marina
2 Replies

4. UNIX for Advanced & Expert Users

Another SUDOER Question...

I have my sudoers file setup to provide execution of specific directories (/a/s, /a/x, /a/d, /a/e, etc.....) I tried to list just /a/ meaning anything under /a can be executed by specific ids. However, this didn't work. Is there a way to provide rights to an entire directory structure within a... (0 Replies)
Discussion started by: scottsl
0 Replies

5. UNIX for Dummies Questions & Answers

Crons executed multiple times.

For some reason my crons are being executed twice. Any suggestion?? I'm currently on 5.8 (2 Replies)
Discussion started by: shorty
2 Replies

6. UNIX for Dummies Questions & Answers

Xwindow display

I am installing Oracle 10g on UNIX. I have prepared the server in various fields. Then when I started installation, one error message came out like this: Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set. So I check... (3 Replies)
Discussion started by: duke0001
3 Replies

7. HP-UX

Urgent Please Help

Hi, One job got failed in my HP Unix server. Now i just want to know whether the command has been executed or not? How to find the executed commands list? Thanks in Advance (1 Reply)
Discussion started by: msgobinathan
1 Replies

8. UNIX for Dummies Questions & Answers

display ^M in xemacs

Sorry, this has probably been posted before, but my searches turn up nothing, and I have tried. using a cygwin distro of xemacs The default is NOT to display CR characters (I expect to see them as ^M). I want to change this so they do show up. Can you tell me please, what command to issue?... (0 Replies)
Discussion started by: scott1256ca
0 Replies

9. UNIX for Dummies Questions & Answers

Question regarding syntax of (lis) and { list;}

Hi there, As you know, we can group a list of commands in either (list) form or { list;}. I know the difference between the two. (list) make the command list to be executed in a subshell while the commands gathered in { list;} are executed in the current shell. My question here is about the... (1 Reply)
Discussion started by: hongwei
1 Replies

10. UNIX for Advanced & Expert Users

multiple commands execution

Hi i have 3 sql scripts that need to be executed simultaneously, and independent of one another, how do i do that in Unix AIX 5.3 (1 Reply)
Discussion started by: yschd
1 Replies

11. UNIX for Dummies Questions & Answers

display that will work with OSF?

I have an Alpha 200 4/166 running Unix/OSF, whose display died. Any idea how I can find a display that has a driver that will work with this system? I tried bringing it up with the display, an HP Pavilion MX703, I use with some Windows systems, and I could see the boot dialog, but then it... (5 Replies)
Discussion started by: KarenAnne
5 Replies

12. UNIX for Dummies Questions & Answers

head\tail how to display middle lines

hay i need to display middle line: 1 2 3 4 5 how can i display 3-4? (6 Replies)
Discussion started by: margan_ron
6 Replies

13. Red Hat

Block binary execution

Hi guys, Is it possible on rhel 6.2 to block execution of a binary and display a custom message on stdout or stderr? thanks (5 Replies)
Discussion started by: gkout
5 Replies

14. Shell Programming and Scripting

How to display only Directories in filesystem?

Hi, I want to display only directories inside a particular file system. TIA (2 Replies)
Discussion started by: sumanthupar
2 Replies