* \param ctx - rendering context
* \param program - the fragment program to execute
* \param machine - machine state (register file)
- * \param maxInst - max number of instructions to execute
* \return GL_TRUE if program completed or GL_FALSE if program executed KIL.
*/
GLboolean
_mesa_execute_program(GLcontext * ctx,
- const struct gl_program *program, GLuint maxInst,
+ const struct gl_program *program,
struct gl_program_machine *machine)
{
+ const GLuint numInst = program->NumInstructions;
const GLuint MAX_EXEC = 10000;
GLint pc, total = 0;
CurrentMachine = machine;
#endif
- for (pc = 0; pc < maxInst; pc++) {
+ for (pc = 0; pc < numInst; pc++) {
const struct prog_instruction *inst = program->Instructions + pc;
#if FEATURE_MESA_program_debug
extern GLboolean
_mesa_execute_program(GLcontext *ctx,
- const struct gl_program *program, GLuint maxInst,
+ const struct gl_program *program,
struct gl_program_machine *machine);
if (span->array->mask[i]) {
init_machine(ctx, &machine, program, span, i);
- if (_mesa_execute_program(ctx, &program->Base,
- program->Base.NumInstructions, &machine)) {
+ if (_mesa_execute_program(ctx, &program->Base, &machine)) {
/* Store result color */
COPY_4V(span->array->attribs[FRAG_ATTRIB_COL0][i],
machine.Outputs[FRAG_RESULT_COLR]);
}
/* 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 &&