diff options
author | Brian Paul <[email protected]> | 2005-02-07 05:08:24 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-02-07 05:08:24 +0000 |
commit | 3deaa01c2bd576ae81fc6d3ea67c583cb3c22159 (patch) | |
tree | 720bcae66b5456b4a88e52c35c03274332b2acca /src/mesa/main/get_gen.py | |
parent | 1e42244e82e387282849b0182bb71b6803ac27d3 (diff) |
additional work on GL_EXT_framebuffer_object
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 07c5fcccd96..1ca8121e893 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -951,6 +951,19 @@ StateVars = [ ( "GL_STENCIL_BACK_PASS_DEPTH_FAIL", GLenum, ["ctx->Stencil.ZFailFunc[1]"], "", None ), ( "GL_STENCIL_BACK_PASS_DEPTH_PASS", GLenum, ["ctx->Stencil.ZPassFunc[1]"], "", None ), + # GL_EXT_framebuffer_object + ( "GL_FRAMEBUFFER_BINDING_EXT", GLint, + ["ctx->CurrentFramebuffer ? ctx->CurrentFramebuffer->Name : 0"], "", + "EXT_framebuffer_object" ), + ( "GL_RENDERBUFFER_BINDING_EXT", GLint, + ["ctx->CurrentRenderbuffer ? ctx->CurrentRenderbuffer->Name : 0"], "", + "EXT_framebuffer_object" ), + ( "GL_MAX_COLOR_ATTACHMENTS_EXT", GLint, + ["ctx->Const.MaxColorAttachments"], "", + "EXT_framebuffer_object" ), + ( "GL_MAX_RENDERBUFFER_SIZE_EXT", GLint, + ["ctx->Const.MaxRenderbufferSize"], "", + "EXT_framebuffer_object" ) ] @@ -1042,6 +1055,7 @@ def EmitHeader(): #include "context.h" #include "enable.h" #include "extensions.h" +#include "fbobject.h" #include "get.h" #include "macros.h" #include "mtypes.h" |