diff --git a/meson.build b/meson.build index 23d2d965b37..a3e3c5478a8 100644 --- a/meson.build +++ b/meson.build @@ -245,7 +245,14 @@ with_microsoft_vk = _vulkan_drivers.contains('microsoft-experimental') with_any_vk = _vulkan_drivers.length() != 0 with_any_broadcom = with_gallium_vc4 or with_gallium_v3d or with_broadcom_vk -with_any_intel = with_intel_vk or with_intel_hasvk or with_gallium_iris or with_gallium_crocus or with_intel_tools +with_any_intel = [ + with_gallium_crocus, + with_gallium_i915, + with_gallium_iris, + with_intel_hasvk, + with_intel_tools, + with_intel_vk, +].contains(true) if with_swrast_vk and not with_gallium_softpipe error('swrast vulkan requires gallium swrast')