zink: support nir_op_f2f32

Reviewed-by: Erik Faye-Lund <kusmabite@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7654>
This commit is contained in:
Mike Blumenkrantz 2020-12-15 11:37:24 -05:00 committed by Marge Bot
parent 536863eeea
commit 2108e4fa8f

View file

@ -1235,6 +1235,7 @@ emit_alu(struct ntv_context *ctx, nir_alu_instr *alu)
UNOP(nir_op_f2u32, SpvOpConvertFToU)
UNOP(nir_op_i2f32, SpvOpConvertSToF)
UNOP(nir_op_u2f32, SpvOpConvertUToF)
UNOP(nir_op_f2f32, SpvOpFConvert)
UNOP(nir_op_bitfield_reverse, SpvOpBitReverse)
#undef UNOP