diff options
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_screen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index 998116fc251..09f8c4135e5 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -906,7 +906,6 @@ static const nir_shader_compiler_options nir_options = { .lower_fsat = false, .lower_fsqrt = false, // TODO: only before gm200 .lower_fmod32 = true, - .lower_fmod64 = true, .lower_bitfield_extract = false, .lower_bitfield_extract_to_shifts = false, .lower_bitfield_insert = false, @@ -955,7 +954,7 @@ static const nir_shader_compiler_options nir_options = { .lower_mul_2x32_64 = true, // TODO .max_unroll_iterations = 32, .lower_int64_options = nir_lower_divmod64, // TODO - .lower_doubles_options = 0, // TODO + .lower_doubles_options = nir_lower_dmod, // TODO }; static const void * |