From cfa0293c8b3a37ea88c815948c70d65a426e9574 Mon Sep 17 00:00:00 2001 From: Mingcong Bai Date: Fri, 21 Jun 2024 11:26:38 +0800 Subject: [PATCH] meson: set default Vulkan drivers for ppc, ppc64 Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 85b45b8e7cf..ae0daeeebeb 100644 --- a/meson.build +++ b/meson.build @@ -224,7 +224,7 @@ if _vulkan_drivers.contains('auto') _vulkan_drivers = ['amd', 'intel', 'intel_hasvk', 'nouveau', 'swrast'] elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) _vulkan_drivers = ['swrast', 'intel'] - elif ['mips', 'mips64', 'riscv32', 'riscv64'].contains(host_machine.cpu_family()) + elif ['mips', 'mips64', 'ppc', 'ppc64', 'riscv32', 'riscv64'].contains(host_machine.cpu_family()) _vulkan_drivers = ['amd', 'swrast'] elif ['loongarch64'].contains(host_machine.cpu_family()) _vulkan_drivers = ['amd', 'swrast']