diff options
author | Brian Paul <[email protected]> | 2003-09-19 15:39:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-19 15:39:11 +0000 |
commit | a13fb034cb50007051ba38b59ee9d59bead3f4ba (patch) | |
tree | 3f8b3cc486a36abb4f289edcb8bcf1480019a055 /src/mesa/main/varray.c | |
parent | e4fcea2e06571b71a85b4f100c95d866a82f7c19 (diff) |
casts
Diffstat (limited to 'src/mesa/main/varray.c')
-rw-r--r-- | src/mesa/main/varray.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index 973541b87e0..fb410540b6c 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -78,7 +78,7 @@ _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr) ctx->Array.Vertex.Size = size; ctx->Array.Vertex.Type = type; ctx->Array.Vertex.Stride = stride; - ctx->Array.Vertex.Ptr = (void *) ptr; + ctx->Array.Vertex.Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.Vertex.BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -131,7 +131,7 @@ _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr ) ctx->Array.Normal.Size = 3; ctx->Array.Normal.Type = type; ctx->Array.Normal.Stride = stride; - ctx->Array.Normal.Ptr = (void *) ptr; + ctx->Array.Normal.Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.Normal.BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -198,7 +198,7 @@ _mesa_ColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr) ctx->Array.Color.Size = size; ctx->Array.Color.Type = type; ctx->Array.Color.Stride = stride; - ctx->Array.Color.Ptr = (void *) ptr; + ctx->Array.Color.Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.Color.BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -239,7 +239,7 @@ _mesa_FogCoordPointerEXT(GLenum type, GLsizei stride, const GLvoid *ptr) ctx->Array.FogCoord.Size = 1; ctx->Array.FogCoord.Type = type; ctx->Array.FogCoord.Stride = stride; - ctx->Array.FogCoord.Ptr = (void *) ptr; + ctx->Array.FogCoord.Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.FogCoord.BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -289,7 +289,7 @@ _mesa_IndexPointer(GLenum type, GLsizei stride, const GLvoid *ptr) ctx->Array.Index.Size = 1; ctx->Array.Index.Type = type; ctx->Array.Index.Stride = stride; - ctx->Array.Index.Ptr = (void *) ptr; + ctx->Array.Index.Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.Index.BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -357,7 +357,7 @@ _mesa_SecondaryColorPointerEXT(GLint size, GLenum type, ctx->Array.SecondaryColor.Size = 3; /* hardwire */ ctx->Array.SecondaryColor.Type = type; ctx->Array.SecondaryColor.Stride = stride; - ctx->Array.SecondaryColor.Ptr = (void *) ptr; + ctx->Array.SecondaryColor.Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.SecondaryColor.BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -415,7 +415,7 @@ _mesa_TexCoordPointer(GLint size, GLenum type, GLsizei stride, ctx->Array.TexCoord[texUnit].Size = size; ctx->Array.TexCoord[texUnit].Type = type; ctx->Array.TexCoord[texUnit].Stride = stride; - ctx->Array.TexCoord[texUnit].Ptr = (void *) ptr; + ctx->Array.TexCoord[texUnit].Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.TexCoord[texUnit].BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -505,7 +505,7 @@ _mesa_VertexAttribPointerNV(GLuint index, GLint size, GLenum type, ctx->Array.VertexAttrib[index].Stride = stride; ctx->Array.VertexAttrib[index].Size = size; ctx->Array.VertexAttrib[index].Type = type; - ctx->Array.VertexAttrib[index].Ptr = (void *) ptr; + ctx->Array.VertexAttrib[index].Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.VertexAttrib[index].BufferObj = ctx->Array.ArrayBufferObj; #endif @@ -586,7 +586,7 @@ _mesa_VertexAttribPointerARB(GLuint index, GLint size, GLenum type, ctx->Array.VertexAttrib[index].Size = size; ctx->Array.VertexAttrib[index].Type = type; ctx->Array.VertexAttrib[index].Normalized = normalized; - ctx->Array.VertexAttrib[index].Ptr = (void *) ptr; + ctx->Array.VertexAttrib[index].Ptr = (GLubyte *) ptr; #if FEATURE_ARB_vertex_buffer_object ctx->Array.VertexAttrib[index].BufferObj = ctx->Array.ArrayBufferObj; #endif |