From e5b244ff7f984805c1bcc020342f1300f2639c71 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 21 Apr 2003 15:02:17 +0000 Subject: Implemented GL_EXT_depth_bounds_test. --- src/mesa/main/extensions.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/mesa/main/extensions.c') diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 59ec4c22e4..2f5bc7588f 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -81,6 +81,7 @@ static struct { { ON, "GL_EXT_clip_volume_hint", F(EXT_clip_volume_hint) }, { OFF, "GL_EXT_convolution", F(EXT_convolution) }, { ON, "GL_EXT_compiled_vertex_array", F(EXT_compiled_vertex_array) }, + { OFF, "GL_EXT_depth_bounds_test", F(EXT_depth_bounds_test) }, { 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) }, @@ -148,6 +149,9 @@ _mesa_enable_sw_extensions(GLcontext *ctx) { const char *extensions[] = { "GL_ARB_depth_texture", +#if FEATURE_ARB_fragment_program + "GL_ARB_fragment_program", +#endif "GL_ARB_imaging", "GL_ARB_multitexture", "GL_ARB_point_parameters", @@ -160,6 +164,9 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_ARB_texture_env_crossbar", "GL_ARB_texture_env_dot3", "GL_ARB_texture_mirrored_repeat", +#if FEATURE_ARB_vertex_program + "GL_ARB_vertex_program", +#endif "GL_ATI_texture_env_combine3", "GL_ATI_texture_mirror_once", "GL_EXT_blend_color", @@ -168,6 +175,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_EXT_blend_minmax", "GL_EXT_blend_subtract", "GL_EXT_convolution", + "GL_EXT_depth_bounds_test", "GL_EXT_fog_coord", "GL_EXT_histogram", "GL_EXT_paletted_texture", -- cgit v1.2.3