 | FramebufferDetachRenderbuffer Method |
Detach a renderbuffer from this framebuffer.
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic void DetachRenderbuffer(
FramebufferAttachment attachment
)
Public Sub DetachRenderbuffer (
attachment As FramebufferAttachment
)
public:
void DetachRenderbuffer(
FramebufferAttachment attachment
)
member DetachRenderbuffer :
attachment : FramebufferAttachment -> unit
Parameters
- attachment
- Type: OooglesFramebufferAttachment
the attachment point from which the renderbuffer should be detached.
ExceptionsException | Condition |
---|
GLException | InvalidOperation if no framebuffer is bound. |
RemarksNote: in DEBUG mode with assertions enabled, an error will be logged to the debug console if this framebuffer is not bound.
OpenGL API: glFramebufferRenderbuffer
See Also