Module: Mesa
Branch: master
Commit: 57b0ccd178bca2ad34f9f02f07ca5a7db9cbeccc
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=57b0ccd178bca2ad34f9f02f07ca5a7db9cbeccc

Author: Eric Engestrom <eric.engest...@imgtec.com>
Date:   Thu Dec  7 16:04:14 2017 +0000

meson: simplify dri3 logic

Signed-off-by: Eric Engestrom <eric.engest...@imgtec.com>
Reviewed-by: Dylan Baker <dy...@pnwbakers.com>

---

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

diff --git a/meson.build b/meson.build
index 8a814a596c..bc5996992a 100644
--- a/meson.build
+++ b/meson.build
@@ -353,15 +353,9 @@ endif
 with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
 with_dri3 = get_option('dri3')
 if with_dri3 == 'auto'
-  if system_has_kms_drm and with_dri2
-    with_dri3 = true
-  else
-    with_dri3 = false
- endif
-elif with_dri3 == 'true'
-  with_dri3 = true
+  with_dri3 = system_has_kms_drm and with_dri2
 else
-  with_dri3 = false
+  with_dri3 = with_dri3 == 'true'
 endif
 
 if with_any_vk and (with_platform_x11 and not with_dri3)

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to