diff options
author | Brian Paul <[email protected]> | 2002-06-29 20:03:13 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-29 20:03:13 +0000 |
commit | 487047c06040112e1a2648982e378e0cca4874b8 (patch) | |
tree | ebaea1afaae69fecad3f23e64a4c30fb402eb590 /src/mesa/main/extensions.c | |
parent | 4e9676fb13f60ecdbc247b120031f18cd3febcb0 (diff) |
prep for OpenGL 1.4 feature set
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index bfecb3af7be..ad2807401b1 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.75 2002/06/15 03:03:08 brianp Exp $ */ +/* $Id: extensions.c,v 1.76 2002/06/29 20:03:13 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -81,11 +81,11 @@ static struct { { OFF, "GL_EXT_blend_minmax", F(EXT_blend_minmax) }, { OFF, "GL_EXT_blend_subtract", F(EXT_blend_subtract) }, { ON, "GL_EXT_clip_volume_hint", F(EXT_clip_volume_hint) }, - { OFF, "GL_EXT_cull_vertex", 0 }, { OFF, "GL_EXT_convolution", F(EXT_convolution) }, { ON, "GL_EXT_compiled_vertex_array", F(EXT_compiled_vertex_array) }, { OFF, "GL_EXT_fog_coord", F(EXT_fog_coord) }, { OFF, "GL_EXT_histogram", F(EXT_histogram) }, + { OFF, "GL_EXT_multi_draw_arrays", F(EXT_multi_draw_arrays) }, { ON, "GL_EXT_packed_pixels", F(EXT_packed_pixels) }, { OFF, "GL_EXT_paletted_texture", F(EXT_paletted_texture) }, { OFF, "GL_EXT_point_parameters", F(EXT_point_parameters) }, @@ -257,6 +257,40 @@ _mesa_enable_1_3_extensions(GLcontext *ctx) /* + * Enable all OpenGL 1.4 features and extensions. + */ +void +_mesa_enable_1_4_extensions(GLcontext *ctx) +{ + const char *extensions[] = { + "GL_ARB_depth_texture", + "GL_ARB_point_parameters", + "GL_ARB_shadow", + "GL_ARB_texture_env_crossbar", + "GL_ARB_texture_mirrored_repeat", + "GL_ARB_window_pos", + "GL_EXT_blend_color", + "GL_EXT_blend_func_separate", + "GL_EXT_blend_logic_op", + "GL_EXT_blend_minmax", + "GL_EXT_blend_subtract", + "GL_EXT_fog_coord", + "GL_EXT_multi_draw_arrays", + "GL_EXT_secondary_color", + "GL_EXT_stencil_wrap", + "GL_SGIS_generate_mipmap", + NULL + }; + GLuint i; + + for (i = 0; extensions[i]; i++) { + _mesa_enable_extension(ctx, extensions[i]); + } +} + + + +/* * Add a new extenstion. This would be called from a Mesa driver. */ void |