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.
macos/v1.5.9
Eric Anholt 11 years ago
parent 8067f15e97
commit d653a87e46
  1. 2
      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">

Loading…
Cancel
Save