From 6767ad9c86bde9bebbf43b3c4649f49cb4dae520 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Fri, 23 Feb 2024 02:22:27 +0000 Subject: [PATCH] meson: Enable d3d12 in gallium_drivers by default on Windows This is pretty much the only usable one that isn't swrast for some people, eg. WoA + QCom. Signed-off-by: Joshua Ashton Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b75316376a7..58a739175ea 100644 --- a/meson.build +++ b/meson.build @@ -158,7 +158,7 @@ if gallium_drivers.contains('auto') host_machine.cpu_family())) endif elif ['windows'].contains(host_machine.system()) - gallium_drivers = ['swrast', 'zink'] + gallium_drivers = ['swrast', 'zink', 'd3d12'] elif ['darwin', 'cygwin', 'haiku'].contains(host_machine.system()) gallium_drivers = ['swrast'] else