aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Blumenkrantz <michael.blumenkrantz@gmail.com>2020-06-10 10:04:36 -0400
committerMarge Bot <eric+marge@anholt.net>2020-06-26 14:07:35 +0000
commit957d8e26582fd9397207f44977302e5a3810b849 (patch)
tree5d195d9f7cd72d4df972a2131dbfd201fd697a99
parent2159aa0c49e1935438b96ff5c56bcce3e292dfad (diff)
downloadexternal_mesa3d-957d8e26582fd9397207f44977302e5a3810b849.tar.gz
external_mesa3d-957d8e26582fd9397207f44977302e5a3810b849.tar.bz2
external_mesa3d-957d8e26582fd9397207f44977302e5a3810b849.zip
zink: add ult handling for ntv
fixes shaders@glsl-vs-absolutedifference-uint piglit test 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 2460b479db1..d821ae2277d 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
@@ -1284,6 +1284,7 @@ emit_alu(struct ntv_context *ctx, nir_alu_instr *alu)
BINOP(nir_op_fmod, SpvOpFMod)
BINOP(nir_op_ilt, SpvOpSLessThan)
BINOP(nir_op_ige, SpvOpSGreaterThanEqual)
+ BINOP(nir_op_ult, SpvOpULessThan)
BINOP(nir_op_uge, SpvOpUGreaterThanEqual)
BINOP(nir_op_flt, SpvOpFOrdLessThan)
BINOP(nir_op_fge, SpvOpFOrdGreaterThanEqual)