diff options
author | Brian Paul <[email protected]> | 2005-02-17 14:12:50 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-02-17 14:12:50 +0000 |
commit | 0846e52d46b36c411f79908df010072e03bb6437 (patch) | |
tree | 4f2dcde8187571eb881239368e4bba3662cb1a77 /src/mesa/drivers/dri/r200/r200_tcl.c | |
parent | 6e2fd966274af5818ce2ac16b2b35ea84f1ac034 (diff) |
s/0/NULL/ (Jeff Muizelaar)
Diffstat (limited to 'src/mesa/drivers/dri/r200/r200_tcl.c')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_tcl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_tcl.c b/src/mesa/drivers/dri/r200/r200_tcl.c index 0e7c71054e7..ec1c43ce507 100644 --- a/src/mesa/drivers/dri/r200/r200_tcl.c +++ b/src/mesa/drivers/dri/r200/r200_tcl.c @@ -484,7 +484,7 @@ const struct tnl_pipeline_stage _r200_tcl_stage = 0, /* re-run (always runs) */ GL_TRUE, /* active */ 0, 0, /* inputs (set in check_render), outputs */ - 0, 0, /* changed_inputs, private */ + 0, NULL, /* changed_inputs, private */ dtr, /* destructor */ r200_init_tcl_render, /* check - initially set to alloc data */ r200_run_tcl_render /* run */ @@ -540,7 +540,7 @@ static void transition_to_hwtnl( GLcontext *ctx ) if ( rmesa->dma.flush ) rmesa->dma.flush( rmesa ); - rmesa->dma.flush = 0; + rmesa->dma.flush = NULL; if (rmesa->swtcl.indexed_verts.buf) r200ReleaseDmaRegion( rmesa, &rmesa->swtcl.indexed_verts, |