diff options
author | Brian Paul <[email protected]> | 2001-03-03 20:56:59 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 20:56:59 +0000 |
commit | 188f2949eaf181f4aab041a6dad26fa76e746eee (patch) | |
tree | 19e97d88e855a8dc7de5f52b310aecf2d17d0ad0 /src/mesa/tnl/t_vb_vertex.c | |
parent | 08836341788a9f9d638d9dc8328510ccd18ddeb5 (diff) |
more namespace clean-ups
Diffstat (limited to 'src/mesa/tnl/t_vb_vertex.c')
-rw-r--r-- | src/mesa/tnl/t_vb_vertex.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mesa/tnl/t_vb_vertex.c b/src/mesa/tnl/t_vb_vertex.c index 0af2f65f7c8..0279d13d378 100644 --- a/src/mesa/tnl/t_vb_vertex.c +++ b/src/mesa/tnl/t_vb_vertex.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_vertex.c,v 1.4 2001/03/03 20:33:31 brianp Exp $ */ +/* $Id: t_vb_vertex.c,v 1.5 2001/03/03 20:57:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -188,19 +188,19 @@ static GLboolean run_vertex_stage( GLcontext *ctx, if (tnl->NeedProjCoords) { VB->ProjectedClipPtr = - gl_clip_tab[VB->ClipPtr->size]( VB->ClipPtr, - &store->proj, - store->clipmask, - &store->ormask, - &store->andmask ); + _mesa_clip_tab[VB->ClipPtr->size]( VB->ClipPtr, + &store->proj, + store->clipmask, + &store->ormask, + &store->andmask ); } else { VB->ProjectedClipPtr = 0; - gl_clip_np_tab[VB->ClipPtr->size]( VB->ClipPtr, - 0, - store->clipmask, - &store->ormask, - &store->andmask ); + _mesa_clip_np_tab[VB->ClipPtr->size]( VB->ClipPtr, + 0, + store->clipmask, + &store->ormask, + &store->andmask ); } if (store->andmask) |