Page 390 OpenGL Super Bible! glEndList Purpose Delimits the end of a display list. Include File Syntax void glEndList( void); Description Display lists are created by first calling glNewList. Thereafter, all OpenGL commands are compiled and placed in the display list. The glEndList function terminates the creation of this display list. Returns None. Example The following example code shows an example of a display list being delimited by glNewList and glEndList. This particular display list is composed by nesting two other display lists within it. // Begin delimit of list glNewList(BOLT_LIST,GL_COMPILE); // Display list calls two previously defined display lists glCallList(SHAFT_LIST); glCallList(THREAD_LIST); // End this display list glEndList(); See Also glCallList, glCallLists, glDeleteLists, glGenLists, glIsList
Note: If you are looking for cheap and reliable webhost to host and run your mysql application check mysql web server services.
This entry was posted
on Friday, October 26th, 2007 at 4:03 am and is filed under Coldfusion.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.