commit | 219f3c4489168efbb9ad008575d86023cf0463ef | [log] [tgz] |
---|---|---|
author | Keith Whitwell <keith@tungstengraphics.com> | Fri Jul 01 17:12:29 2005 +0000 |
committer | Keith Whitwell <keith@tungstengraphics.com> | Fri Jul 01 17:12:29 2005 +0000 |
tree | 1a1511ee520c3e6226da815052ec9bac511fd128 | |
parent | 06abb854f03b247a449d5b6de37a08b80d79f422 [diff] [blame] |
Set fp->Opcode for OP_TEX_KILL case, fix from Ben Skeggs.
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index b9bd1b0..e33b79e 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c
@@ -3115,6 +3115,7 @@ case OP_TEX_KIL: if (parse_fp_vector_src_reg(ctx, inst, vc_head, Program, &fp->SrcReg[0])) return 1; + fp->Opcode = FP_OPCODE_KIL; break; }