summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_vb_program.c
diff options
context:
space:
mode:
authorBrian <brian@nostromo.localnet.net>2007-02-25 18:26:50 -0700
committerBrian <brian@nostromo.localnet.net>2007-02-25 18:26:50 -0700
commit8b34b7da4131d2b07037ce062c522fddd614f127 (patch)
tree4b618dc29b26767008b68b1b1a33e0b0b29e1836 /src/mesa/tnl/t_vb_program.c
parent085d7d59f0e167bb546c4a1675e09631b14fc9f7 (diff)
remove 'maxInst' parameter from _mesa_execute_program()
Diffstat (limited to 'src/mesa/tnl/t_vb_program.c')
-rw-r--r--src/mesa/tnl/t_vb_program.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_vb_program.c b/src/mesa/tnl/t_vb_program.c
index 05b1a4aaab..17eefe7032 100644
--- a/src/mesa/tnl/t_vb_program.c
+++ b/src/mesa/tnl/t_vb_program.c
@@ -257,8 +257,7 @@ run_vp( GLcontext *ctx, struct tnl_pipeline_stage *stage )
}
/* execute the program */
- _mesa_execute_program(ctx, &program->Base, program->Base.NumInstructions,
- &machine);
+ _mesa_execute_program(ctx, &program->Base, &machine);
/* Fixup fog an point size results if needed */
if (ctx->Fog.Enabled &&