diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-01-21 15:49:06 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-01-21 15:49:06 +0000 |
commit | 943f0c6a41aa66705ffba90a55cf75296b0bde1d (patch) | |
tree | 7a6b2f673bdf28081316ca8e1fa8f991145afda9 /src/mesa/main/extensions.c | |
parent | 19ad3fee8c721f35ea3467c9ba4c84d1fd9ef10c (diff) |
GL_ATI_texture_env_combine3 extension
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 836216436c..296308c437 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.86 2003/01/14 04:55:45 brianp Exp $ */ +/* $Id: extensions.c,v 1.87 2003/01/21 15:49:14 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -69,6 +69,7 @@ static struct { { ON, "GL_ARB_transpose_matrix", 0 }, { ON, "GL_ARB_window_pos", F(ARB_window_pos) }, { OFF, "GL_ATI_texture_mirror_once", F(ATI_texture_mirror_once)}, + { OFF, "GL_ATI_texture_env_combine3", F(ATI_texture_env_combine3)}, { ON, "GL_EXT_abgr", 0 }, { ON, "GL_EXT_bgra", 0 }, { OFF, "GL_EXT_blend_color", F(EXT_blend_color) }, @@ -157,6 +158,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) "GL_ARB_texture_env_crossbar", "GL_ARB_texture_env_dot3", "GL_ARB_texture_mirrored_repeat", + "GL_ATI_texture_env_combine3", "GL_ATI_texture_mirror_once", "GL_EXT_blend_color", "GL_EXT_blend_func_separate", |