From 6f3062dffa5121058cdd47e4c0b8776a4da3dfb6 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Mon, 10 Feb 2025 06:35:03 +0200 Subject: [PATCH] meson: add freedreno (turnip) Vulkan to arm64 defaults On Aarch64 enable freedreno Vulkan driver (turnip) by default. It is stable enough to be enabled by default on the relevant platform. Signed-off-by: Dmitry Baryshkov Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 35bbeeb4cc2..07991a6eb5e 100644 --- a/meson.build +++ b/meson.build @@ -230,7 +230,7 @@ if _vulkan_drivers.contains('auto') if host_machine.cpu_family().startswith('x86') _vulkan_drivers = ['amd', 'intel', 'intel_hasvk', 'nouveau', 'swrast'] elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) - _vulkan_drivers = ['swrast', 'intel', 'panfrost'] + _vulkan_drivers = ['swrast', 'intel', 'panfrost', 'freedreno'] elif ['mips', 'mips64', 'ppc', 'ppc64', 'riscv32', 'riscv64'].contains(host_machine.cpu_family()) _vulkan_drivers = ['amd', 'swrast'] elif ['loongarch64'].contains(host_machine.cpu_family())