diff options
author | Brian <[email protected]> | 2008-03-24 19:55:41 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-24 19:56:30 -0600 |
commit | 816fbeaa813e5cdca314a39677c74c8dc700d35a (patch) | |
tree | 418d3411155038d6d96bedd6ce8a5d28021cfa78 /src/mesa/main/get_gen.py | |
parent | 7048545c44ccc5a2ffe716705c128d7a37dff766 (diff) |
add GL_READ_FRAMEBUFFER_BINDING_EXT case, regenerate get.c file
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index 90554332814..819a7cc5d7b 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -983,6 +983,11 @@ StateVars = [ ["ctx->Const.MaxRenderbufferSize"], "", ["EXT_framebuffer_object"] ), + # GL_EXT_framebuffer_blit + # NOTE: GL_DRAW_FRAMEBUFFER_BINDING_EXT == GL_FRAMEBUFFER_BINDING_EXT + ( "GL_READ_FRAMEBUFFER_BINDING_EXT", GLint, ["ctx->ReadBuffer->Name"], "", + ["EXT_framebuffer_blit"] ), + # GL_ARB_fragment_shader ( "GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB", GLint, ["ctx->Const.FragmentProgram.MaxUniformComponents"], "", |