removed ARB_texture_env_add bool flag, use EXT_texture_env_add flag
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 15 Mar 2001 18:21:01 +0000 (18:21 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 15 Mar 2001 18:21:01 +0000 (18:21 +0000)
src/mesa/main/extensions.c
src/mesa/main/mtypes.h

index eab5822..1b5c9cd 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: extensions.c,v 1.51 2001/02/27 00:13:25 brianp Exp $ */
+/* $Id: extensions.c,v 1.52 2001/03/15 18:21:01 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -60,7 +60,7 @@ static struct {
    { OFF, "GL_ARB_multitexture",              F(ARB_multitexture) },
    { OFF, "GL_ARB_texture_compression",       F(ARB_texture_compression) },
    { OFF, "GL_ARB_texture_cube_map",          F(ARB_texture_cube_map) },
-   { OFF, "GL_ARB_texture_env_add",           F(ARB_texture_env_add) },
+   { OFF, "GL_ARB_texture_env_add",           F(EXT_texture_env_add) },
    { ON,  "GL_ARB_tranpose_matrix",           0 },
    { ON,  "GL_EXT_abgr",                      0 },
    { ON,  "GL_EXT_bgra",                      0 },
index 1ee63f8..49c72f4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mtypes.h,v 1.24 2001/03/11 18:49:11 gareth Exp $ */
+/* $Id: mtypes.h,v 1.25 2001/03/15 18:21:01 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -1190,7 +1190,6 @@ struct gl_extensions {
    GLboolean ARB_multitexture;
    GLboolean ARB_texture_compression;
    GLboolean ARB_texture_cube_map;
-   GLboolean ARB_texture_env_add;
    GLboolean EXT_blend_color;
    GLboolean EXT_blend_func_separate;
    GLboolean EXT_blend_logic_op;