summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_pipeline.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-04-30 09:04:00 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-04-30 09:04:00 +0000
commit16837e4219e03df36c34f08cee1967b946c44536 (patch)
tree928670184b9c26dac47a87158e4a2ffc65457532 /src/mesa/tnl/t_pipeline.c
parentac4a41d198111fb1b0f564cbd2b82217dd6fc265 (diff)
Restore optimization for cva glArrayElement operation.
Diffstat (limited to 'src/mesa/tnl/t_pipeline.c')
-rw-r--r--src/mesa/tnl/t_pipeline.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_pipeline.c b/src/mesa/tnl/t_pipeline.c
index 81f3b078f2..73fa9c9571 100644
--- a/src/mesa/tnl/t_pipeline.c
+++ b/src/mesa/tnl/t_pipeline.c
@@ -1,4 +1,4 @@
-/* $Id: t_pipeline.c,v 1.16 2001/04/19 12:23:07 keithw Exp $ */
+/* $Id: t_pipeline.c,v 1.17 2001/04/30 09:04:00 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -132,6 +132,9 @@ void _tnl_run_pipeline( GLcontext *ctx )
*/
ASSERT(pipe->build_state_changes == 0);
+/* _tnl_print_vert_flags( "run_pipeline, new inputs", changed_inputs ); */
+/* _mesa_print_state( "run_pipeline, new state", changed_state ); */
+
START_FAST_MATH(__tmp);
if (tnl->Driver.PipelineStart)
tnl->Driver.PipelineStart( ctx );
@@ -154,8 +157,12 @@ void _tnl_run_pipeline( GLcontext *ctx )
if (s->changed_inputs)
changed_inputs |= s->outputs;
-/* fprintf(stderr, "run %s\n", s->name); */
+ if (0)
+ fprintf(stderr, "run %s inputs %x\n",
+ s->name, s->changed_inputs);
+
running = s->run( ctx, s );
+ s->changed_inputs = 0; /* readded this apr 30 */
VB->importable_data &= ~s->outputs;
}
}