zink: handle ixor in ntv

fixes spec@glsl-1.30@execution@built-in-functions@fs-op-assign-bitxor tests

Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5562>
This commit is contained in:
Mike Blumenkrantz
2020-06-16 11:14:19 -04:00
committed by Marge Bot
parent 651d093298
commit 21fe5b0ffd
@@ -1294,6 +1294,7 @@ emit_alu(struct ntv_context *ctx, nir_alu_instr *alu)
BINOP(nir_op_ishl, SpvOpShiftLeftLogical)
BINOP(nir_op_ishr, SpvOpShiftRightArithmetic)
BINOP(nir_op_ushr, SpvOpShiftRightLogical)
BINOP(nir_op_ixor, SpvOpBitwiseXor)
#undef BINOP
#define BINOP_LOG(nir_op, spv_op, spv_log_op) \