Reviewed-by: Jason Ekstrand <[email protected]>

On Fri, Feb 27, 2015 at 2:19 PM, Ian Romanick <[email protected]> wrote:

> From: Ian Romanick <[email protected]>
>
> It appears that all the other instructions that need it already use it.
> This one just got missed.
>
> Signed-off-by: Ian Romanick <[email protected]>
> Cc: "10.5" <[email protected]>
> Cc: Jason Ekstrand <[email protected]>
> ---
>  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;
>
> --
> 2.1.0
>
> _______________________________________________
> mesa-dev mailing list
> [email protected]
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
_______________________________________________
mesa-dev mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to