From 0846e52d46b36c411f79908df010072e03bb6437 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 17 Feb 2005 14:12:50 +0000 Subject: s/0/NULL/ (Jeff Muizelaar) --- src/mesa/drivers/dri/r200/r200_context.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/drivers/dri/r200/r200_context.c') diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index baaca08755..25f9d2cb96 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -182,7 +182,7 @@ static const struct tnl_pipeline_stage *r200_pipeline[] = { */ /* &_r200_render_stage, */ /* FIXME: bugs with ut2003 */ &_tnl_render_stage, /* FALLBACK: */ - 0, + NULL, }; @@ -561,7 +561,7 @@ void r200DestroyContext( __DRIcontextPrivate *driContextPriv ) if (rmesa->state.scissor.pClipRects) { FREE(rmesa->state.scissor.pClipRects); - rmesa->state.scissor.pClipRects = 0; + rmesa->state.scissor.pClipRects = NULL; } if ( release_texture_heaps ) { @@ -648,7 +648,7 @@ r200MakeCurrent( __DRIcontextPrivate *driContextPriv, } else { if (R200_DEBUG & DEBUG_DRI) fprintf(stderr, "%s ctx is null\n", __FUNCTION__); - _mesa_make_current( 0, 0 ); + _mesa_make_current( NULL, NULL ); } if (R200_DEBUG & DEBUG_DRI) -- cgit v1.2.3