Name
gl.LoadName -- load a name onto the name stack
Synopsis
gl.LoadName(name)
Function
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 and is initially empty.

gl.LoadName() causes name to replace the value on the top of the name stack.

The name stack is always empty while the render mode is not #GL_SELECT. Calls to gl.LoadName() while the render mode is not #GL_SELECT are ignored.

Please consult an OpenGL reference manual for more information.

Inputs
name
specifies a name that will replace the top value on the name stack
Errors
#GL_INVALID_OPERATION is generated if gl.LoadName() is called while the name stack is empty.

#GL_INVALID_OPERATION is generated if gl.LoadName() is executed between the execution of gl.Begin() and the corresponding execution of gl.End().

Associated gets
gl.Get() with argument #GL_NAME_STACK_DEPTH

gl.Get() with argument #GL_MAX_NAME_STACK_DEPTH


Show TOC