diff options
author | Ilia Mirkin <[email protected]> | 2014-11-23 12:17:26 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-11-23 15:43:27 -0500 |
commit | 7d07083cfdff4bdbeca9ac36c2127cb6a26be207 (patch) | |
tree | 4d873651328edb8c7fd34cafb01782f3575ec102 /src/gallium | |
parent | 89b9ef937c11598817e0ec2d20d70b5254d4e406 (diff) |
nv50/ir: set neg modifiers on min/max args
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=86618
Signed-off-by: Ilia Mirkin <[email protected]>
Cc: "10.4 10.3" <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp index 077eba8e3d4..3048f3d5f7f 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp @@ -924,7 +924,9 @@ CodeEmitterNV50::emitMINMAX(const Instruction *i) break; } code[1] |= i->src(0).mod.abs() << 20; + code[1] |= i->src(0).mod.neg() << 26; code[1] |= i->src(1).mod.abs() << 19; + code[1] |= i->src(1).mod.neg() << 27; } emitForm_MAD(i); } |