Mesa (master): i965/fs/nir: Use emit_math for nir_op_fpow

Ian Romanick idr at kemper.freedesktop.org
Sat Feb 28 02:50:33 UTC 2015


Module: Mesa
Branch: master
Commit: b8a1637119249c1d5e76c27d0053360bbb7f4e77
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b8a1637119249c1d5e76c27d0053360bbb7f4e77

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Fri Feb 27 14:17:50 2015 -0800

i965/fs/nir: Use emit_math for nir_op_fpow

It appears that all the other instructions that need it already use it.
This one just got missed.

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand at intel.com>
Cc: "10.5" <mesa-stable at lists.freedesktop.org>

---

 src/mesa/drivers/dri/i965/brw_fs_nir.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
index 388e636..f15d82f 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
@@ -1090,7 +1090,7 @@ fs_visitor::nir_emit_alu(nir_alu_instr *instr)
       break;
 
    case nir_op_fpow:
-      inst = emit(SHADER_OPCODE_POW, result, op[0], op[1]);
+      inst = emit_math(SHADER_OPCODE_POW, result, op[0], op[1]);
       inst->saturate = instr->dest.saturate;
       break;
 




More information about the mesa-commit mailing list