diff options
author | Karol Herbst <[email protected]> | 2018-04-26 21:06:08 +0200 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2018-07-24 20:40:05 +0200 |
commit | 7f95564a22d11ee3f54915ee02f9fa1f78c6adcf (patch) | |
tree | 81c6b13651bd7f88acec7b1a7e470491a984da72 /src/gallium/drivers/freedreno | |
parent | 2083cfb6eba9a9e7441c44fa0c8402dbc216eb3a (diff) |
nir: rename f2f16_undef to f2f16
we need rounding modes on other conversions involving floats and it is easier
to rename f2f16_undef than renaming all the other ones.
v2: rebased on master
Reviewed-by: Jason Ekstrand <[email protected]>
Acked-by: Rob Clark <[email protected]>
Signed-off-by: Karol Herbst <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno')
-rw-r--r-- | src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c b/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c index d8414903e75..6eb1e03e025 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c +++ b/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c @@ -948,7 +948,7 @@ create_cov(struct ir3_context *ctx, struct ir3_instruction *src, case nir_op_f2f32: case nir_op_f2f16_rtne: case nir_op_f2f16_rtz: - case nir_op_f2f16_undef: + case nir_op_f2f16: case nir_op_f2i32: case nir_op_f2i16: case nir_op_f2i8: @@ -1020,7 +1020,7 @@ create_cov(struct ir3_context *ctx, struct ir3_instruction *src, case nir_op_f2f16_rtne: case nir_op_f2f16_rtz: - case nir_op_f2f16_undef: + case nir_op_f2f16: /* TODO how to handle rounding mode? */ case nir_op_i2f16: case nir_op_u2f16: @@ -1145,7 +1145,7 @@ emit_alu(struct ir3_context *ctx, nir_alu_instr *alu) case nir_op_f2f32: case nir_op_f2f16_rtne: case nir_op_f2f16_rtz: - case nir_op_f2f16_undef: + case nir_op_f2f16: case nir_op_f2i32: case nir_op_f2i16: case nir_op_f2i8: |