From 08836341788a9f9d638d9dc8328510ccd18ddeb5 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 3 Mar 2001 20:33:27 +0000 Subject: lots of gl_*() to _mesa_*() namespace clean-up --- src/mesa/tnl/t_vb_points.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/tnl/t_vb_points.c') diff --git a/src/mesa/tnl/t_vb_points.c b/src/mesa/tnl/t_vb_points.c index 16f9ca9722f..94a9dc27a31 100644 --- a/src/mesa/tnl/t_vb_points.c +++ b/src/mesa/tnl/t_vb_points.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_points.c,v 1.1 2000/12/26 05:09:33 keithw Exp $ */ +/* $Id: t_vb_points.c,v 1.2 2001/03/03 20:33:31 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -89,7 +89,7 @@ static GLboolean alloc_point_data( GLcontext *ctx, if (!store) return GL_FALSE; - gl_vector1f_alloc( &store->PointSize, 0, VB->Size, 32 ); + _mesa_vector1f_alloc( &store->PointSize, 0, VB->Size, 32 ); /* Now run the stage. */ @@ -102,7 +102,7 @@ static void free_point_data( struct gl_pipeline_stage *stage ) { struct point_stage_data *store = POINT_STAGE_DATA(stage); if (store) { - gl_vector1f_free( &store->PointSize ); + _mesa_vector1f_free( &store->PointSize ); FREE( store ); stage->private = 0; } -- cgit v1.2.3