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/vbo/vbo_noop.c | |
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/vbo/vbo_noop.c')
-rw-r--r-- | src/mesa/vbo/vbo_noop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_noop.c b/src/mesa/vbo/vbo_noop.c index 43001120784..2f472c21c2e 100644 --- a/src/mesa/vbo/vbo_noop.c +++ b/src/mesa/vbo/vbo_noop.c @@ -404,7 +404,7 @@ _mesa_noop_DrawRangeElementsBaseVertex(GLenum mode, static void GLAPIENTRY _mesa_noop_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei * count, GLenum type, - const GLvoid ** indices, + const GLvoid * const *indices, GLsizei primcount, const GLint * basevertex) { |