diff options
author | Brian Paul <[email protected]> | 2012-06-27 10:52:55 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-06-27 15:37:10 -0600 |
commit | 9881bf6e69b52efc1eb57a4027d9a8817ef8cbcb (patch) | |
tree | 5cb1746a15eb8d5ef381695c5700d091826cc038 /src/mesa/main/dd.h | |
parent | 827bdee7d1ec29ce07f35780f7d2262f2fa0acf4 (diff) |
mesa: more const qualifiers to match the latest glext.h
For some reason regular gcc on Linux didn't catch these but the mingw
compiler did (generated errors, not warnings).
v2: include the changes in src/mapi/ too
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 5bcf36bfa71..687a38f4487 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1024,7 +1024,7 @@ typedef struct { void (GLAPIENTRYP MultiDrawElementsBaseVertex)( GLenum mode, const GLsizei *count, GLenum type, - const GLvoid **indices, + const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex); void (GLAPIENTRYP DrawArraysInstanced)(GLenum mode, GLint first, |