From 55596204e4387fe99161a77a8e410abcd197f096 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Fri, 24 Apr 2026 15:42:49 +0200 Subject: [PATCH] nv30: advertize new float multadd options Reviewed-by: Georg Lehmann Part-of: --- src/gallium/drivers/nouveau/nv30/nv30_screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/nouveau/nv30/nv30_screen.c b/src/gallium/drivers/nouveau/nv30/nv30_screen.c index 90828787034..ae9be535008 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_screen.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_screen.c @@ -337,6 +337,7 @@ nv30_screen_is_format_supported(struct pipe_screen *pscreen, static const nir_shader_compiler_options nv30_base_compiler_options = { .fuse_ffma32 = true, .fuse_ffma64 = true, + .float_mul_add32 = nir_float_muladd_support_has_fmad | nir_float_muladd_support_fuse, .lower_bitops = true, .lower_extract_byte = true, .lower_extract_word = true,