Mesa (dri3-auto): meson: replace error when dri3 is not enabled for x11 on vulkan with enablement

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Jun 11 10:51:44 UTC 2021


Module: Mesa
Branch: dri3-auto
Commit: b61282f2a480f16c3e1947dfb93aeecf40050fc9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b61282f2a480f16c3e1947dfb93aeecf40050fc9

Author: Eric Engestrom <eric at engestrom.ch>
Date:   Fri Jun 11 12:49:42 2021 +0200

meson: replace error when dri3 is not enabled for x11 on vulkan with enablement

Signed-off-by: Eric Engestrom <eric at engestrom.ch>

---

 meson.build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meson.build b/meson.build
index 3ae123dbdce..f69145d9553 100644
--- a/meson.build
+++ b/meson.build
@@ -513,8 +513,8 @@ with_dri2 = (with_dri or with_any_vk) and (with_dri_platform == 'drm' or
   host_machine.system() == 'gnu')
 with_dri3 = system_has_kms_drm and with_dri2
 
-if with_any_vk and (with_platform_x11 and not with_dri3)
-  error('Vulkan drivers require dri3 for X11 support')
+if with_any_vk and with_platform_x11
+  with_dri3 = true
 endif
 if with_dri
   if with_glx == 'disabled' and not with_egl and not with_gbm



More information about the mesa-commit mailing list