diff options
Diffstat (limited to 'src/freedreno/ir3/ir3_nir.c')
-rw-r--r-- | src/freedreno/ir3/ir3_nir.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/freedreno/ir3/ir3_nir.c b/src/freedreno/ir3/ir3_nir.c index f9d059254fd..f2fc46db7cc 100644 --- a/src/freedreno/ir3/ir3_nir.c +++ b/src/freedreno/ir3/ir3_nir.c @@ -57,6 +57,7 @@ static const nir_shader_compiler_options options = { .use_interpolated_input_intrinsics = true, .lower_rotate = true, .lower_to_scalar = true, + .has_imul24 = true, }; /* we don't want to lower vertex_id to _zero_based on newer gpus: */ @@ -84,6 +85,7 @@ static const nir_shader_compiler_options options_a6xx = { .lower_rotate = true, .vectorize_io = true, .lower_to_scalar = true, + .has_imul24 = true, }; const nir_shader_compiler_options * |