Module: Mesa Branch: master Commit: dd39e487261990a7e7ac699d004e64dda48f08d8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd39e487261990a7e7ac699d004e64dda48f08d8
Author: Ilia Mirkin <[email protected]> Date: Sun Jan 15 12:15:06 2017 -0500 nvc0/ir: emit FMZ flag when requested on FFMA Signed-off-by: Ilia Mirkin <[email protected]> --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp index ef06939..a58335d 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp @@ -537,6 +537,10 @@ CodeEmitterNVC0::emitFMAD(const Instruction *i) if (i->saturate) code[0] |= 1 << 5; + + if (i->dnz) + code[0] |= 1 << 7; + else if (i->ftz) code[0] |= 1 << 6; } else { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
