glBindRenderbuffer

bind a renderbuffer to a renderbuffer target

Signature

glBindRenderbuffer( GLenum ( target ) , GLuint ( renderbuffer ) )-> void
glBindRenderbuffer( target , renderbuffer )

Parameters

VariablesDescription
target
Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER .
renderbuffer
Specifies the name of the renderbuffer object to bind.

Sample Code References

The following code samples have been found which appear to reference the functions described here. Take care that the code may be old, broken or not even use PyOpenGL.

glBindRenderbuffer
OpenGLContext tests/shadow_2.py Lines: 97, 105