From 2f5b3c9607fd48418a5b3d3dcd6035a3b976b166 Mon Sep 17 00:00:00 2001 From: Brian Date: Fri, 2 Feb 2007 11:37:58 -0700 Subject: fix maxInst argument --- src/mesa/swrast/s_fragprog.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mesa/swrast') diff --git a/src/mesa/swrast/s_fragprog.c b/src/mesa/swrast/s_fragprog.c index 343cdf5bc5..740360d460 100644 --- a/src/mesa/swrast/s_fragprog.c +++ b/src/mesa/swrast/s_fragprog.c @@ -1683,7 +1683,8 @@ run_program(GLcontext *ctx, SWspan *span, GLuint start, GLuint end) if (span->array->mask[i]) { init_machine(ctx, &machine, program, span, i); - if (execute_program(ctx, program, ~0, &machine, span, i)) { + if (execute_program(ctx, program, program->Base.NumInstructions, + &machine, span, i)) { /* Store result color */ COPY_4V(span->array->attribs[FRAG_ATTRIB_COL0][i], machine.Outputs[FRAG_RESULT_COLR]); -- cgit v1.2.3