mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
vc4: Enable NIR's lower_fmod option.
Currently, st/mesa is always calling the GLSL IR lower_instructions() pass with MOD_TO_FLOOR set, so mod operations will be lowered before ever reaching NIR. This enables the same lowering at the NIR level, which will let me shut off the GLSL IR path for NIR-based drivers. Reviewed-by: Marek Olšák <marek.olsak@amd.com> Acked-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
b0e3bd79dc
commit
e0641e0728
1 changed files with 1 additions and 0 deletions
|
|
@ -2189,6 +2189,7 @@ static const nir_shader_compiler_options nir_options = {
|
|||
.lower_fdiv = true,
|
||||
.lower_ffma = true,
|
||||
.lower_flrp32 = true,
|
||||
.lower_fmod = true,
|
||||
.lower_fpow = true,
|
||||
.lower_fsat = true,
|
||||
.lower_fsqrt = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue