diff options
author | Keith Whitwell <[email protected]> | 2005-02-10 10:57:22 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-02-10 10:57:22 +0000 |
commit | b97e478fe90f612041e27852eb8c95f45467bde8 (patch) | |
tree | 944adbe75c4027772cc1208c4ba35c60d1480148 /src/mesa/tnl/t_vb_vertex.c | |
parent | a9a4c5489ec12f6aa768d44578c332f654c536ea (diff) |
mesa-tnl-0-to-NULL.patch from Jeff Muizelaar
Diffstat (limited to 'src/mesa/tnl/t_vb_vertex.c')
-rw-r--r-- | src/mesa/tnl/t_vb_vertex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/tnl/t_vb_vertex.c b/src/mesa/tnl/t_vb_vertex.c index 3951439fff3..ec303187a54 100644 --- a/src/mesa/tnl/t_vb_vertex.c +++ b/src/mesa/tnl/t_vb_vertex.c @@ -118,8 +118,8 @@ static void (*(usercliptab[5]))( GLcontext *, GLvector4f *, GLubyte *, GLubyte *, GLubyte * ) = { - 0, - 0, + NULL, + NULL, userclip2, userclip3, userclip4 @@ -209,9 +209,9 @@ static GLboolean run_vertex_stage( GLcontext *ctx, &store->andmask ); } else { - VB->NdcPtr = 0; + VB->NdcPtr = NULL; _mesa_clip_np_tab[VB->ClipPtr->size]( VB->ClipPtr, - 0, + NULL, store->clipmask, &store->ormask, &store->andmask ); |