diff options
author | Marek Olšák <[email protected]> | 2012-10-28 14:24:53 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-10-31 01:58:17 +0100 |
commit | cf9acc3833ef3848c5d37a1e9b06285eec8a9dd6 (patch) | |
tree | d3e8831d28e67c6a100d759161d6e315ef29ed4e /src/mesa/main/extensions.c | |
parent | 1301f91b31b4df7124eaee24fc65501da1dcb5d2 (diff) |
mesa: remove EXT_compiled_vertex_array extension enable flag
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[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 6ac0e5d197c..b77eca01a47 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -164,7 +164,7 @@ static const struct extension extension_table[] = { { "GL_EXT_blend_minmax", o(EXT_blend_minmax), GLL | ES1 | ES2, 1995 }, { "GL_EXT_blend_subtract", o(dummy_true), GLL, 1995 }, { "GL_EXT_clip_volume_hint", o(EXT_clip_volume_hint), GL, 1996 }, - { "GL_EXT_compiled_vertex_array", o(EXT_compiled_vertex_array), GLL, 1996 }, + { "GL_EXT_compiled_vertex_array", o(dummy_true), GLL, 1996 }, { "GL_EXT_copy_texture", o(dummy_true), GLL, 1995 }, { "GL_EXT_depth_bounds_test", o(EXT_depth_bounds_test), GL, 2002 }, { "GL_EXT_draw_buffers2", o(EXT_draw_buffers2), GL, 2006 }, @@ -357,7 +357,6 @@ name_to_offset(const char* name) * XXX: Should these defaults also apply to GLES? */ static const size_t default_extensions[] = { - o(EXT_compiled_vertex_array), o(EXT_draw_range_elements), o(EXT_packed_pixels), o(EXT_rescale_normal), |