diff options
author | Brian Paul <[email protected]> | 2001-03-22 04:57:09 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-22 04:57:09 +0000 |
commit | 8806915c3ad023bacc0569b03b6394b0f88b7606 (patch) | |
tree | ba325ef382f396233e9596896d07606a55618476 /src/mesa/main/enums.c | |
parent | a13df148df3b663fe5ccd9a2dce1925a9cf84093 (diff) |
added GL_ARB_texture_env_dot3 enums
Diffstat (limited to 'src/mesa/main/enums.c')
-rw-r--r-- | src/mesa/main/enums.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index bccd0a861db..310b80f5325 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -1,4 +1,4 @@ -/* $Id: enums.c,v 1.14 2001/03/12 00:48:37 gareth Exp $ */ +/* $Id: enums.c,v 1.15 2001/03/22 04:57:09 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -837,6 +837,10 @@ enum_elt all_enums[] = { "GL_DOT3_RGB_EXT", 0x8740 }, { "GL_DOT3_RGBA_EXT", 0x8741 }, + /* GL_ARB_texture_env_dot3 */ + { "GL_DOT3_RGB_EXT", 0x86ae }, + { "GL_DOT3_RGBA_EXT", 0x86af }, + }; #define Elements(x) sizeof(x)/sizeof(*x) |