diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2005-02-07 10:36:00 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2005-02-07 10:36:00 +0000 |
commit | 1f2b715988ff6bba6f31ef34081c29a5c63b3d60 (patch) | |
tree | 39008bda9f34ea65464f82776afaad8de92b8d5a /src/mesa/main | |
parent | 3deaa01c2bd576ae81fc6d3ea67c583cb3c22159 (diff) |
GL_ARB_texture_rectangle enums (Andreas Stenglein)
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/enums.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 6fb57b2657..895796ebac 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -925,6 +925,12 @@ static enum_elt all_enums[] = { "SWIZZLE_STQ_ATI", 0x8977 }, { "SWIZZLE_STR_DR_ATI", 0x8978 }, { "SWIZZLE_STQ_DQ_ATI", 0x8979 }, + + /* GL_ARB_texture_rectangle */ + { "GL_TEXTURE_RECTANGLE_ARB", 0x84F5 }, + { "GL_TEXTURE_BINDING_RECTANGLE_ARB", 0x84F6 }, + { "GL_PROXY_TEXTURE_RECTANGLE_ARB", 0x84F7 }, + { "GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB", 0x84F8 }, }; #define Elements(x) sizeof(x)/sizeof(*x) |