diff options
author | Kendall Bennett <[email protected]> | 2003-09-12 22:01:01 +0000 |
---|---|---|
committer | Kendall Bennett <[email protected]> | 2003-09-12 22:01:01 +0000 |
commit | b29b8ca47d322f1f93f5321be7529cf0c440c695 (patch) | |
tree | 424f895f38b6f0869e3a277f7b77eb0beca0f337 /src/mesa/main/vtxfmt_tmp.h | |
parent | 438a898dcfdb202e4cc0768fc641846ed2ab7131 (diff) |
Updates to fix problems building with the Open Watcom compiler.
Diffstat (limited to 'src/mesa/main/vtxfmt_tmp.h')
-rw-r--r-- | src/mesa/main/vtxfmt_tmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/vtxfmt_tmp.h b/src/mesa/main/vtxfmt_tmp.h index 0900d6e3fc9..33140359526 100644 --- a/src/mesa/main/vtxfmt_tmp.h +++ b/src/mesa/main/vtxfmt_tmp.h @@ -363,7 +363,7 @@ static void TAG(DrawArrays)( GLenum mode, GLint start, GLsizei count ) } static void TAG(DrawElements)( GLenum mode, GLsizei count, GLenum type, - const void *indices ) + const GLvoid *indices ) { PRE_LOOPBACK( DrawElements ); _glapi_Dispatch->DrawElements( mode, count, type, indices ); @@ -371,7 +371,7 @@ static void TAG(DrawElements)( GLenum mode, GLsizei count, GLenum type, static void TAG(DrawRangeElements)( GLenum mode, GLuint start, GLuint end, GLsizei count, - GLenum type, const void *indices ) + GLenum type, const GLvoid *indices ) { PRE_LOOPBACK( DrawRangeElements ); _glapi_Dispatch->DrawRangeElements( mode, start, end, count, type, indices ); |