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/mesa/main/dlist.c | |
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/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 6928d21a21e..d847d4d5d3c 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -8892,8 +8892,8 @@ exec_FogCoordPointerEXT(GLenum type, GLsizei stride, const GLvoid *ptr) /* GL_EXT_multi_draw_arrays */ static void GLAPIENTRY -exec_MultiDrawArraysEXT(GLenum mode, GLint * first, - GLsizei * count, GLsizei primcount) +exec_MultiDrawArraysEXT(GLenum mode, const GLint *first, + const GLsizei *count, GLsizei primcount) { GET_CURRENT_CONTEXT(ctx); FLUSH_VERTICES(ctx, 0); |