From 014ec1ac5e98e86836285a176d7674bc43a00cd7 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 4 Dec 2001 23:44:55 +0000 Subject: prototype implementation of GL_ARB_depth_texture, GL_ARB_shadow, GL_ARB_shadow_ambient --- src/mesa/main/extensions.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/mesa/main/extensions.c') diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 75b1f3967d1..75bbb05281a 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.66 2001/11/19 00:41:32 brianp Exp $ */ +/* $Id: extensions.c,v 1.67 2001/12/04 23:44:55 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -56,9 +56,12 @@ static struct { const char *name; int flag_offset; } default_extensions[] = { + { OFF, "GL_ARB_depth_texture", F(SGIX_depth_texture) }, { OFF, "GL_ARB_imaging", F(ARB_imaging) }, { OFF, "GL_ARB_multisample", F(ARB_multisample) }, { OFF, "GL_ARB_multitexture", F(ARB_multitexture) }, + { OFF, "GL_ARB_shadow", F(ARB_shadow) }, + { OFF, "GL_ARB_shadow_ambient", F(SGIX_shadow_ambient) }, { OFF, "GL_ARB_texture_border_clamp", F(ARB_texture_border_clamp) }, { OFF, "GL_ARB_texture_compression", F(ARB_texture_compression) }, { OFF, "GL_ARB_texture_cube_map", F(ARB_texture_cube_map) }, @@ -133,8 +136,11 @@ void _mesa_enable_sw_extensions(GLcontext *ctx) { const char *extensions[] = { + "GL_ARB_depth_texture", "GL_ARB_imaging", "GL_ARB_multitexture", + "GL_ARB_shadow", + "GL_ARB_shadow_ambient", "GL_ARB_texture_border_clamp", "GL_ARB_texture_cube_map", "GL_ARB_texture_env_add", -- cgit v1.2.3