diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2001-05-10 12:18:38 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2001-05-10 12:18:38 +0000 |
commit | 7954a0cafdce545cde193e8ec317afa85be2b736 (patch) | |
tree | 39942ead2e18fc39b662a80e837b80a4328337a1 /src/mesa/tnl/t_imm_exec.c | |
parent | f2bcadec7c45727058050521cca1c52b6226aa68 (diff) |
Replace PipelineStart, PipelineFinish with RunPipeline. Clean up
_tnl_run_pipeline() a little.
Diffstat (limited to 'src/mesa/tnl/t_imm_exec.c')
-rw-r--r-- | src/mesa/tnl/t_imm_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_imm_exec.c b/src/mesa/tnl/t_imm_exec.c index adb79ab7d5..64ea08810b 100644 --- a/src/mesa/tnl/t_imm_exec.c +++ b/src/mesa/tnl/t_imm_exec.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_exec.c,v 1.22 2001/05/09 13:53:36 keithw Exp $ */ +/* $Id: t_imm_exec.c,v 1.23 2001/05/10 12:18:38 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -367,7 +367,7 @@ void _tnl_run_cassette( GLcontext *ctx, struct immediate *IM ) /* Invalidate all stored data before and after run: */ tnl->pipeline.run_input_changes |= tnl->pipeline.inputs; - _tnl_run_pipeline( ctx ); + tnl->Driver.RunPipeline( ctx ); tnl->pipeline.run_input_changes |= tnl->pipeline.inputs; _tnl_copy_to_current( ctx, IM, IM->OrFlag ); @@ -420,7 +420,7 @@ static void exec_elt_cassette( GLcontext *ctx, struct immediate *IM ) /* Run the pipeline. No input changes as a result of this action. */ - _tnl_run_pipeline( ctx ); + tnl->Driver.RunPipeline( ctx ); /* Still need to update current values: (TODO - copy from VB) * TODO: delay this until FlushVertices |