summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorJoshua Ashton <joshua@froggi.es>2024-02-23 02:22:27 +0000
committerMarge Bot <emma+marge@anholt.net>2024-02-23 02:28:29 +0000
commit6767ad9c86bde9bebbf43b3c4649f49cb4dae520 (patch)
tree9374270fba4f814e03aa712c036cf001ace8931e /meson.build
parent5a6de45bd55eba358c8a983e44a146e4b437c623 (diff)
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 <joshua@froggi.es> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27737>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
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