diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 93023415333..0bf64d994cf 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -78,6 +78,12 @@ static const nir_shader_compiler_options sp_compiler_options = { .fdot_replicates = true, .fuse_ffma32 = true, .fuse_ffma64 = true, + .float_mul_add32 = + nir_float_muladd_support_has_fmad | + nir_float_muladd_support_fuse, + .float_mul_add64 = + nir_float_muladd_support_has_fmad | + nir_float_muladd_support_fuse, .lower_extract_byte = true, .lower_extract_word = true, .lower_insert_byte = true,