summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/vtxfmt_tmp.h
diff options
context:
space:
mode:
authorKendall Bennett <KendallB@scitechsoft.com>2003-09-12 22:01:01 +0000
committerKendall Bennett <KendallB@scitechsoft.com>2003-09-12 22:01:01 +0000
commitb29b8ca47d322f1f93f5321be7529cf0c440c695 (patch)
tree424f895f38b6f0869e3a277f7b77eb0beca0f337 /src/mesa/main/vtxfmt_tmp.h
parent438a898dcfdb202e4cc0768fc641846ed2ab7131 (diff)
downloadexternal_mesa3d-b29b8ca47d322f1f93f5321be7529cf0c440c695.zip
external_mesa3d-b29b8ca47d322f1f93f5321be7529cf0c440c695.tar.gz
external_mesa3d-b29b8ca47d322f1f93f5321be7529cf0c440c695.tar.bz2
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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/vtxfmt_tmp.h b/src/mesa/main/vtxfmt_tmp.h
index 0900d6e..3314035 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 );