diff options
author | Paul Berry <[email protected]> | 2012-02-15 10:35:10 -0800 |
---|---|---|
committer | Paul Berry <[email protected]> | 2012-02-23 09:35:44 -0800 |
commit | bc39de8c0b6bb19e411cfa8606f189c4868a5f01 (patch) | |
tree | 00dcc80ddb92b3c49aeec9a73682cae7acbeebb0 /src/mapi/glapi | |
parent | 4a72d859b4f8d0444eb7f38606d59d7ddc9ea8fa (diff) |
glapi: Fix incorrect enum value.
From http://www.opengl.org/registry/specs/ARB/seamless_cube_map.txt:
Accepted by the <cap> parameter of Enable, Disable and IsEnabled,
and by the <pname> parameter of GetBooleanv, GetIntegerv, GetFloatv
and GetDoublev:
TEXTURE_CUBE_MAP_SEAMLESS 0x884F
This caused a change in enums.c, which is manually built from the .xml
files.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mapi/glapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_seamless_cube_map.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/ARB_seamless_cube_map.xml b/src/mapi/glapi/gen/ARB_seamless_cube_map.xml index 8dc827c5a89..84e8aa8ae18 100644 --- a/src/mapi/glapi/gen/ARB_seamless_cube_map.xml +++ b/src/mapi/glapi/gen/ARB_seamless_cube_map.xml @@ -4,7 +4,7 @@ <OpenGLAPI> <category name="GL_ARB_seamless_cube_map" number="65"> - <enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x88F4"> + <enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x884F"> <size name="Get" mode="get"/> </enum> </category> |