Home > comp > gb.opengl > gl > checkframebufferstatusext 
 en fr de es it nl pl pt pt_BR mk sq ca hu tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
Gl.CheckFramebufferStatusEXT (gb.opengl)
Static Function CheckFramebufferStatusEXT ( Target As Integer ) As Integer

Check the completeness status of a framebuffer.

Parameters

target

Specify the target of the framebuffer completeness check.

Description

Gl.CheckFramebufferStatus queries the completeness status of the framebuffer objekt currently bound to target. target must be Gl.DRAW_FRAMEBUFFER, Gl.READ_FRAMEBUFFER or Gl.FRAMEBUFFER. Gl.FRAMEBUFFER is equivalent to Gl.DRAW_FRAMEBUFFER.

The return value is Gl.FRAMEBUFFER_COMPLETE if the framebuffer bound to target is complete. Otherwise, the return value is determined as follows:

Additionally, if an error occurs, zero is returned.

Errors

Gl.INVALID_ENUM is generated if target is not Gl.DRAW_FRAMEBUFFER, Gl.READ_FRAMEBUFFER or Gl.FRAMEBUFFER.

See also

Gl.GenFramebuffers, Gl.DeleteFramebuffers Gl.BindFramebuffer

See original documentation on OpenGL website