glBindFramebuffer

bind a framebuffer to a framebuffer target

Signature

glBindFramebuffer( GLenum ( target ) , GLuint ( framebuffer ) )-> void
glBindFramebuffer( target , framebuffer )

Parameters

VariablesDescription
target
Specifies the framebuffer target of the binding operation.
framebuffer
Specifies the name of the framebuffer 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.

glBindFramebuffer
OpenGLContext tests/shadow_2.py Lines: 37, 69, 106, 130, 160