mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 01:50:12 +01:00
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:
parent
fe5fbadd46
commit
fcceeaffae
1 changed files with 5 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue