summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_array_api.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-04-10 19:57:19 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-04-10 19:57:19 +0000
commit6cfaff16334981a247694b2ca30fffc398a330d0 (patch)
tree932d3f2a29e1a18686fede557b08899e0d3b8fad /src/mesa/tnl/t_array_api.c
parentbf7128a682fad669aa215d7fadd9b50a6de49a32 (diff)
remove a const
Diffstat (limited to 'src/mesa/tnl/t_array_api.c')
-rw-r--r--src/mesa/tnl/t_array_api.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_array_api.c b/src/mesa/tnl/t_array_api.c
index 76fc607842..95bc293bee 100644
--- a/src/mesa/tnl/t_array_api.c
+++ b/src/mesa/tnl/t_array_api.c
@@ -1,5 +1,3 @@
-/* $Id: t_array_api.c,v 1.32 2003/04/10 10:03:30 keithw Exp $ */
-
/*
* Mesa 3-D graphics library
* Version: 5.1
@@ -73,7 +71,7 @@ static void fallback_drawelements( GLcontext *ctx, GLenum mode, GLsizei count,
static void _tnl_draw_range_elements( GLcontext *ctx, GLenum mode,
GLuint start, GLuint end,
- GLsizei count, const GLuint *indices )
+ GLsizei count, GLuint *indices )
{
TNLcontext *tnl = TNL_CONTEXT(ctx);