diff options
author | Ian Romanick <[email protected]> | 2011-08-23 17:18:00 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-26 12:14:13 -0700 |
commit | 425284e88244e63a627b3fc4ae4514f064c71a83 (patch) | |
tree | 6679a971104165eb6e7b3ee0f03893d5254e0245 /src/mesa/main/extensions.c | |
parent | e5301b82ff66f3acd36d9e8467ee73a6a2573695 (diff) |
mesa: Remove OES_read_format extension enable flag
This extension is always enabled, and drivers do not have
to option to disable it.
I kept this one separate from the others because I was a little
uncertain about the changes to get.c.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index ba4919304a9..948027577a3 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -239,7 +239,7 @@ static const struct extension extension_table[] = { { "GL_OES_point_size_array", o(dummy_true), ES1, 2004 }, { "GL_OES_point_sprite", o(ARB_point_sprite), ES1, 2004 }, { "GL_OES_query_matrix", o(dummy_true), ES1, 2003 }, - { "GL_OES_read_format", o(OES_read_format), GL | ES1, 2003 }, + { "GL_OES_read_format", o(dummy_true), GL | ES1, 2003 }, { "GL_OES_rgb8_rgba8", o(EXT_framebuffer_object), ES1 | ES2, 2005 }, { "GL_OES_single_precision", o(dummy_true), ES1, 2003 }, { "GL_OES_standard_derivatives", o(OES_standard_derivatives), ES2, 2005 }, @@ -354,7 +354,6 @@ static const size_t default_extensions[] = { o(EXT_separate_specular_color), o(EXT_texture3D), - o(OES_read_format), o(OES_standard_derivatives), /* Vendor Extensions */ |