diff options
author | Eric Anholt <eric@anholt.net> | 2014-01-21 11:25:05 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2014-01-22 01:00:43 -0800 |
commit | d653a87e4648260713c718a8778b5c5e4088a6de (patch) | |
tree | ee1204e76f762b28aed31eadff75f004dec71255 /registry/gl.xml | |
parent | 8067f15e97573c053bd28e1a18f70d02a4192513 (diff) | |
download | libepoxy-d653a87e4648260713c718a8778b5c5e4088a6de.tar.gz |
Fix the definition of ALL_ATTRIB_BITS.
It's been 0x000fffff on Mesa since the initial import in 1999. It's
the same value on my OS X 10.8 system, mingw's Windows-compatible
gl.h, and a copy of the windows SDK gl.h I found laying around on the
internet.
Fixes piglit ARB_multisample/pushpop.
Diffstat (limited to 'registry/gl.xml')
-rw-r--r-- | registry/gl.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/gl.xml b/registry/gl.xml index 6ae53e2..cca93ab 100644 --- a/registry/gl.xml +++ b/registry/gl.xml @@ -2035,7 +2035,7 @@ typedef unsigned int GLhandleARB; <enum value="0x20000000" name="GL_MULTISAMPLE_BIT_ARB"/> <enum value="0x20000000" name="GL_MULTISAMPLE_BIT_EXT"/> <enum value="0x20000000" name="GL_MULTISAMPLE_BIT_3DFX"/> - <enum value="0xFFFFFFFF" name="GL_ALL_ATTRIB_BITS" comment="Guaranteed to mark all attribute groups at once"/> + <enum value="0x000FFFFF" name="GL_ALL_ATTRIB_BITS" comment="Guaranteed to mark all attribute groups at once"/> </enums> <enums namespace="GL" group="ClearBufferMask" type="bitmask" comment="GL_{DEPTH,ACCUM,STENCIL,COLOR}_BUFFER_BIT also lie in this namespace"> |