i915: support nir_op_fmad

Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41165>
This commit is contained in:
Karol Herbst 2026-04-24 17:08:40 +02:00 committed by Marge Bot
parent a9206a271a
commit 246a431b41

View file

@ -110,6 +110,7 @@ i915_get_name(struct pipe_screen *screen)
static const nir_shader_compiler_options i915_compiler_options = {
.fdot_replicates = true,
.fuse_ffma32 = true,
.float_mul_add32 = nir_float_muladd_support_has_fmad | nir_float_muladd_support_fuse,
.lower_bitops = true, /* required for !CAP_INTEGERS nir_to_tgsi */
.lower_extract_byte = true,
.lower_extract_word = true,