diff options
-rw-r--r-- | src/gallium/drivers/lima/lima_program.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/lima/lima_program.c b/src/gallium/drivers/lima/lima_program.c index 38776154edb..3247892c773 100644 --- a/src/gallium/drivers/lima/lima_program.c +++ b/src/gallium/drivers/lima/lima_program.c @@ -43,6 +43,7 @@ static const nir_shader_compiler_options vs_nir_options = { .lower_fpow = true, .lower_ffract = true, .lower_fdiv = true, + .lower_fmod = true, .lower_fsqrt = true, .lower_sub = true, .lower_flrp32 = true, @@ -56,6 +57,7 @@ static const nir_shader_compiler_options vs_nir_options = { static const nir_shader_compiler_options fs_nir_options = { .lower_fpow = true, .lower_fdiv = true, + .lower_fmod = true, .lower_sub = true, .lower_flrp32 = true, .lower_flrp64 = true, |