diff options
author | Brian Paul <[email protected]> | 2010-09-14 09:37:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-09-14 09:37:37 -0600 |
commit | 7993832c12bba578010005b344dcd3817be84a42 (patch) | |
tree | 59c27bba7e33fdc3ac7673737b17e1c7e298db93 /src/mapi/glapi/gen | |
parent | 83f5f50f2f69adae497c71ac48e4e0177979ebff (diff) |
mesa: update to version 64 of GL/glext.h
A number of other files had to be updated as well because const
qualifiers were added to the glMultiDrawArrays() function.
Also, GL_FIXED is now defined in glext.h.
Diffstat (limited to 'src/mapi/glapi/gen')
-rw-r--r-- | src/mapi/glapi/gen/Makefile | 2 | ||||
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mapi/glapi/gen/Makefile b/src/mapi/glapi/gen/Makefile index 586c302f180..41640b3b049 100644 --- a/src/mapi/glapi/gen/Makefile +++ b/src/mapi/glapi/gen/Makefile @@ -106,7 +106,7 @@ xorg: check-xorg-source $(XORG_OUTPUTS) check-xorg-source: @if ! test -d $(XORG_GLX_DIR); then \ - echo "ERROR: Must specify path to xserver/GL/GLX checkout; set XORG_GLX_DIR."; \ + echo "ERROR: Must specify path to xserver/GL/ checkout; set XORG_BASE env var."; \ exit 1; \ fi diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 71a1a8c0132..5cf216c91fd 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -4666,8 +4666,8 @@ <function name="MultiDrawArrays" alias="MultiDrawArraysEXT"> <param name="mode" type="GLenum"/> - <param name="first" type="GLint *"/> <!-- Spec bug. Should be const. --> - <param name="count" type="GLsizei *"/> <!-- Spec bug. Should be const. --> + <param name="first" type="const GLint *"/> + <param name="count" type="const GLsizei *"/> <param name="primcount" type="GLsizei"/> </function> @@ -9794,8 +9794,8 @@ <category name="GL_EXT_multi_draw_arrays" number="148"> <function name="MultiDrawArraysEXT" offset="assign"> <param name="mode" type="GLenum"/> - <param name="first" type="GLint *"/> <!-- Spec bug. Should be const. --> - <param name="count" type="GLsizei *"/> <!-- Spec bug. Should be const. --> + <param name="first" type="const GLint *"/> + <param name="count" type="const GLsizei *"/> <param name="primcount" type="GLsizei"/> <glx handcode="true"/> </function> |