diff options
author | Brian Paul <brianp@vmware.com> | 2013-06-26 11:10:48 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2013-06-26 13:12:01 -0600 |
commit | b7d9478f36bde0f7b27321378c1bb799fdd4eaa1 (patch) | |
tree | eb1b53c55286704f2d2795af6a80df59e1aa0c5c /src/mapi | |
parent | 15436adab0ae2dea5d62567326f1f3969939781b (diff) |
mesa: add const qualifier to glMultiDrawElementsEXT() indices param
The 20130624 version of glext.h changed this to match the
glMultiDrawElements() function which already had the extra const
qualifier.
Fixes warnings/errors that seem to vary from one compiler to the next.
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index f7257978f2..a066fe2d11 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -10168,7 +10168,7 @@ <param name="mode" type="GLenum"/> <param name="count" type="const GLsizei *"/> <param name="type" type="GLenum"/> - <param name="indices" type="const GLvoid **"/> + <param name="indices" type="const GLvoid * const *"/> <param name="primcount" type="GLsizei"/> <glx handcode="true"/> </function> |