diff options
author | Brian Paul <[email protected]> | 2010-04-09 10:09:24 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-09 10:09:24 -0600 |
commit | 75b8c4a8f869f63991c774caa7e1cec7e988c5ec (patch) | |
tree | 141f8eb5754404818d6d46a4bb6cca0ecdd01494 /src/mesa/shader | |
parent | 4ae2bdcb150aa87557c8f1648445e84bfb926986 (diff) | |
parent | b22a00bff4aadd390dd8af6b5b05bd2833ec7f85 (diff) |
Merge branch '7.8'
Diffstat (limited to 'src/mesa/shader')
-rw-r--r-- | src/mesa/shader/program.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index f4f701b5461..f77a7737530 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -625,7 +625,7 @@ replace_registers(struct prog_instruction *inst, GLuint numInst, GLuint i, j; for (i = 0; i < numInst; i++) { /* src regs */ - for (j = 0; j < _mesa_num_inst_src_regs(inst->Opcode); j++) { + for (j = 0; j < _mesa_num_inst_src_regs(inst[i].Opcode); j++) { if (inst[i].SrcReg[j].File == oldFile && inst[i].SrcReg[j].Index == oldIndex) { inst[i].SrcReg[j].File = newFile; @@ -652,7 +652,7 @@ adjust_param_indexes(struct prog_instruction *inst, GLuint numInst, { GLuint i, j; for (i = 0; i < numInst; i++) { - for (j = 0; j < _mesa_num_inst_src_regs(inst->Opcode); j++) { + for (j = 0; j < _mesa_num_inst_src_regs(inst[i].Opcode); j++) { GLuint f = inst[i].SrcReg[j].File; if (f == PROGRAM_CONSTANT || f == PROGRAM_UNIFORM || |