diff options
author | Eric Anholt <[email protected]> | 2015-09-18 14:55:41 -0400 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-12-01 10:24:15 -0800 |
commit | bfc64b968827aff39477d7dab0203446d03eb459 (patch) | |
tree | 78690cd3a2cda6895f277b3ba4fb4ae969dffd98 /src/mapi | |
parent | 76ec0b903865c19ab3a2a36aab9211f75480ee9e (diff) |
mesa: Fix enum definition of CULL_VERTEX_EYE/OBJECT_POSITION
In converting to using the Khronos XML, I found that our XML had these two
swapped, and the text spec agreed.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 6243bddd218..ec5d8ac25c0 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -9687,11 +9687,11 @@ <category name="GL_EXT_cull_vertex" number="98"> <enum name="CULL_VERTEX_EXT" value="0x81AA"/> - <enum name="CULL_VERTEX_OBJECT_POSITION_EXT" count="4" value="0x81AB"> + <enum name="CULL_VERTEX_EYE_POSITION_EXT" count="4" value="0x81AB"> <size name="CullParameterfv"/> <size name="CullParameterdv"/> </enum> - <enum name="CULL_VERTEX_EYE_POSITION_EXT" count="4" value="0x81AC"> + <enum name="CULL_VERTEX_OBJECT_POSITION_EXT" count="4" value="0x81AC"> <size name="CullParameterfv"/> <size name="CullParameterdv"/> </enum> |