mesa-tnl-0-to-NULL.patch from Jeff Muizelaar

This commit is contained in:
Keith Whitwell
2005-02-10 10:57:22 +00:00
parent a9a4c5489e
commit b97e478fe9
21 changed files with 59 additions and 59 deletions

View File

@@ -201,9 +201,9 @@ run_vp( GLcontext *ctx, struct tnl_pipeline_stage *stage )
&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 );
@@ -345,7 +345,7 @@ static void dtr( struct tnl_pipeline_stage *stage )
ALIGN_FREE( store->clipmask );
FREE( store );
stage->privatePtr = 0;
stage->privatePtr = NULL;
}
}