aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>2020-06-16 11:17:47 -0400
committerMarge Bot <eric+marge@anholt.net>2020-06-26 14:07:35 +0000
commit49c13fccf75faf5f3befb87d94e86665f57b1898 (patch)
tree7b10fa0218082fd7d8b3b27137a392521cca033c
parent21fe5b0ffdf291ac711206e51288045939a83259 (diff)
downloadexternal_mesa3d-49c13fccf75faf5f3befb87d94e86665f57b1898.tar.gz
external_mesa3d-49c13fccf75faf5f3befb87d94e86665f57b1898.tar.bz2
external_mesa3d-49c13fccf75faf5f3befb87d94e86665f57b1898.zip
zink: handle isign alu in ntv
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5562>
-rw-r--r--src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c b/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c
index 40a0b267a25..00410a75b79 100644
--- a/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c
+++ b/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c
@@ -1239,6 +1239,7 @@ emit_alu(struct ntv_context *ctx, nir_alu_instr *alu)
BUILTIN_UNOP(nir_op_ftrunc, GLSLstd450Trunc)
BUILTIN_UNOP(nir_op_fround_even, GLSLstd450RoundEven)
BUILTIN_UNOP(nir_op_fsign, GLSLstd450FSign)
+ BUILTIN_UNOP(nir_op_isign, GLSLstd450SSign)
BUILTIN_UNOP(nir_op_fsin, GLSLstd450Sin)
BUILTIN_UNOP(nir_op_fcos, GLSLstd450Cos)
#undef BUILTIN_UNOP