diff options
author | Brian Paul <[email protected]> | 2001-03-26 19:42:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-26 19:42:40 +0000 |
commit | 2bb04cad14f5edd9e2657a1122ceeb1fb468f4a9 (patch) | |
tree | 3ccdd22150911fffac3a40a069c8a29b043cb0db /src/mesa/main/enums.c | |
parent | 425fea1c346438f1c60a768514e74f655f05417a (diff) |
added GL_ARB_texture_border_clamp
Diffstat (limited to 'src/mesa/main/enums.c')
-rw-r--r-- | src/mesa/main/enums.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 310b80f5325..1801a4e4990 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -1,4 +1,4 @@ -/* $Id: enums.c,v 1.15 2001/03/22 04:57:09 brianp Exp $ */ +/* $Id: enums.c,v 1.16 2001/03/26 19:42:40 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -841,6 +841,8 @@ enum_elt all_enums[] = { "GL_DOT3_RGB_EXT", 0x86ae }, { "GL_DOT3_RGBA_EXT", 0x86af }, + /* GL_ARB_texture_border_clamp */ + { "GL_CLAMP_TO_BORDER_ARB", 0x812D }, }; #define Elements(x) sizeof(x)/sizeof(*x) |