diff options
author | Christoph Bumiller <[email protected]> | 2013-07-04 14:19:18 +0200 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-11-28 19:17:52 -0500 |
commit | f3b4b263c2f08f641c42a02bf3c57c3da2fc0414 (patch) | |
tree | c47eb58563c7cc75a5a4eb0ade7fee88a0d5ce50 /src/gallium | |
parent | 133280120b4bc714bbb7665e383f36ab262c280a (diff) |
nv50/ir/tgsi: handle TGSI_OPCODE_ARR
This instruction is used by st/nine.
Reviewed-by: Ilia Mirkin <[email protected]>
Cc: "10.4" <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp index 39a70aa59f1..9ee927f67ad 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp @@ -2337,9 +2337,12 @@ Converter::handleInstruction(const struct tgsi_full_instruction *insn) mkMov(dst0[c], val0); break; case TGSI_OPCODE_ARL: + case TGSI_OPCODE_ARR: FOR_EACH_DST_ENABLED_CHANNEL(0, c, tgsi) { + const RoundMode rnd = + tgsi.getOpcode() == TGSI_OPCODE_ARR ? ROUND_N : ROUND_M; src0 = fetchSrc(0, c); - mkCvt(OP_CVT, TYPE_S32, dst0[c], TYPE_F32, src0)->rnd = ROUND_M; + mkCvt(OP_CVT, TYPE_S32, dst0[c], TYPE_F32, src0)->rnd = rnd; } break; case TGSI_OPCODE_UARL: |