Module: Mesa Branch: master Commit: c2b0f3c17d055152795c022da8202043baa3e15f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c2b0f3c17d055152795c022da8202043baa3e15f
Author: Alyssa Rosenzweig <[email protected]> Date: Fri May 1 12:15:10 2020 -0400 nir: Add fclamp_pos opcode Corresponds to the .pos modifier on all Mali GPUs (lima and panfrost). Signed-off-by: Alyssa Rosenzweig <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Acked-by: Jason Ekstrand <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5102> --- src/compiler/nir/nir_opcodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/nir/nir_opcodes.py b/src/compiler/nir/nir_opcodes.py index dd70640caa2..03f00d12639 100644 --- a/src/compiler/nir/nir_opcodes.py +++ b/src/compiler/nir/nir_opcodes.py @@ -201,6 +201,7 @@ unop("iabs", tint, "(src0 < 0) ? -src0 : src0") unop("fabs", tfloat, "fabs(src0)") unop("fsat", tfloat, ("fmin(fmax(src0, 0.0), 1.0)")) unop("fsat_signed", tfloat, ("fmin(fmax(src0, -1.0), 1.0)")) +unop("fclamp_pos", tfloat, ("fmax(src0, 0.0)")) unop("frcp", tfloat, "bit_size == 64 ? 1.0 / src0 : 1.0f / src0") unop("frsq", tfloat, "bit_size == 64 ? 1.0 / sqrt(src0) : 1.0f / sqrtf(src0)") unop("fsqrt", tfloat, "bit_size == 64 ? sqrt(src0) : sqrtf(src0)") _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
