GLAPI/glBindRenderbuffer: Difference between revisions
m Renaming category: 'GL 4 API Framebuffer Objects' to 'Core API Ref Framebuffer Objects'. |
m Renaming category: 'API Reference 4' to 'Core API Reference'. |
||
Line 33: | Line 33: | ||
Copyright © 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. [http://opencontent.org/openpub/ http://opencontent.org/openpub/]. | Copyright © 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. [http://opencontent.org/openpub/ http://opencontent.org/openpub/]. | ||
[[Category:Core API Ref Framebuffer Objects|BindRenderbuffer]] | [[Category:Core API Ref Framebuffer Objects|BindRenderbuffer]] | ||
[[Category:Core API Reference|BindRenderbuffer]] |
Revision as of 07:34, 26 February 2012
Core in version | 4.6 | |
---|---|---|
Core since version | 3.0 |
glBindRenderbuffer: bind a renderbuffer to a renderbuffer target
Function Definition
void glBindRenderbuffer(GLenum target, GLuint renderbuffer);
- target
- Specifies the renderbuffer target of the binding operation. target must be GL_RENDERBUFFER.
- renderbuffer
- Specifies the name of the renderbuffer object to bind.
Description
glBindRenderbuffer binds the renderbuffer object with name renderbuffer to the renderbuffer target specified by target. target must be GL_RENDERBUFFER. renderbuffer is the name of a renderbuffer object previously returned from a call to glGenRenderbuffers, or zero to break the existing binding of a renderbuffer object to target.
Errors
GL_INVALID_ENUM is generated if target is not GL_RENDERBUFFER.
GL_INVALID_OPERATION is generated if renderbuffer is not zero or the name of a renderbuffer previously returned from a call to glGenRenderbuffers.
See Also
glGenRenderbuffers, glDeleteRenderbuffers, glRenderbufferStorage, glRenderbufferStorageMultisample, glIsRenderbuffer
Copyright
Copyright © 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.