panfrost/midgard: Add 64 bits float <-> int converters

The 64 bit converter cases were missing, add them now.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3478>
This commit is contained in:
Boris Brezillon 2020-01-20 22:05:14 +01:00 committed by Marge Bot
parent fe5fbadd46
commit fcceeaffae

View file

@ -787,6 +787,11 @@ emit_alu(compiler_context *ctx, nir_alu_instr *instr)
ALU_CASE(fexp2, fexp2);
ALU_CASE(flog2, flog2);
ALU_CASE(f2i64, f2i_rtz);
ALU_CASE(f2u64, f2u_rtz);
ALU_CASE(i2f64, i2f_rtz);
ALU_CASE(u2f64, u2f_rtz);
ALU_CASE(f2i32, f2i_rtz);
ALU_CASE(f2u32, f2u_rtz);
ALU_CASE(i2f32, i2f_rtz);