[ Previous | Next | Contents | Glossary | Home | Search ]
OpenGL 1.1 for AIX: Reference Manual

glPushName or glPopName Subroutine

Purpose

Pushes and pops the name stack.

Library

OpenGL C bindings library: libGL.a

C Syntax

void glPushName(GLuint Name)
void glPopName(void)

Parameters

Name Specifies a name that will be pushed onto the name stack.

Description

The name stack is used during selection mode to allow sets of rendering commands to be uniquely identified. It consists of an ordered set of unsigned integers. The glPushName subroutine causes the Name parameter to be pushed onto the name stack, which is initially empty. The glPopName subroutine pops one name off the top of the stack.

It is an error to push a name onto a full stack, or to pop a name off an empty stack. It is also an error to manipulate the name stack between a call to the glBegin subroutine and the corresponding call to the glEnd subroutine. In any of these cases, the error flag is set and no other change is made to GL state.

The name stack is always empty while the render mode is not GL_SELECT. Calls to glPushName or glPopName while the render mode is not GL_SELECT are ignored.

Associated Gets

Associated gets for the glPushName or glPopName subroutine are as follows. (See the glGet subroutine for more information.)

glGet with argument GL_NAME_STACK_DEPTH

glGet with argument GL_MAX_NAME_STACK_DEPTH.

Error Codes

GL_STACK_OVERFLOW The glPushName subroutine is called while the name stack is full.
GL_STACK_UNDERFLOW The glPopName subroutine is called while the name stack is empty.
GL_INVALID_OPERATION The glPushName or glPopName subroutine is called between a call to glBegin and the corresponding call to glEnd.

Files

/usr/include/GL/gl.h Contains C language constants, variable type definitions, and ANSI function prototypes for OpenGL.

Related Information

The glBegin or glEnd subroutine, glInitNames subroutine, glLoadName subroutine, glRenderMode subroutine, glSelectBuffer subroutine.

OpenGL Overview.


[ Previous | Next | Contents | Glossary | Home | Search ]