diff options
author | Brian Paul <[email protected]> | 2010-04-05 08:01:05 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-05 08:01:05 -0600 |
commit | 557c8bb748f0b23dcc7c02ca9c594add4a42638d (patch) | |
tree | 9125c812bfb4f8712d17ec41e7bfd4f6e896230d /src/mesa/main/get_gen.py | |
parent | 3258058d3b3fe0412007bfa699918bbe1665939d (diff) |
mesa: check for _NEW_BUFFERS for color read format queries
Diffstat (limited to 'src/mesa/main/get_gen.py')
-rw-r--r-- | src/mesa/main/get_gen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/get_gen.py b/src/mesa/main/get_gen.py index bfaca1536d1..d6a6d0b18fa 100644 --- a/src/mesa/main/get_gen.py +++ b/src/mesa/main/get_gen.py @@ -1015,9 +1015,9 @@ StateVars = [ # GL_OES_read_format ( "GL_IMPLEMENTATION_COLOR_READ_TYPE_OES", GLint, - ["_mesa_get_color_read_type(ctx)"], "", NoState, ["OES_read_format"] ), + ["_mesa_get_color_read_type(ctx)"], "", "_NEW_BUFFERS", ["OES_read_format"] ), ( "GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES", GLint, - ["_mesa_get_color_read_format(ctx)"], "", NoState, ["OES_read_format"] ), + ["_mesa_get_color_read_format(ctx)"], "", "_NEW_BUFFERS", ["OES_read_format"] ), # GL_ATI_fragment_shader ( "GL_NUM_FRAGMENT_REGISTERS_ATI", GLint, ["6"], |