30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From 81920a5a90d7a9efd9223f55be5f468d5313fa0d Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Gaignard <benjamin.gaignard@linaro.org>
|
|
Date: Tue, 17 Jul 2018 13:54:50 +0200
|
|
Subject: [PATCH] do not use GBM modifiers
|
|
|
|
GBM modifiers are broken do not use until we can fix GBM provider
|
|
|
|
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@st.com>
|
|
---
|
|
configure.ac | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 093d6b54..9e705f95 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -215,9 +215,6 @@ if test x$enable_drm_compositor = xyes; then
|
|
PKG_CHECK_MODULES(DRM_COMPOSITOR_FORMATS_BLOB, [libdrm >= 2.4.83],
|
|
[AC_DEFINE([HAVE_DRM_FORMATS_BLOB], 1, [libdrm supports modifier advertisement])],
|
|
[AC_MSG_WARN([libdrm does not support modifier advertisement])])
|
|
- PKG_CHECK_MODULES(DRM_COMPOSITOR_GBM_MODIFIERS, [gbm >= 17.1],
|
|
- [AC_DEFINE([HAVE_GBM_MODIFIERS], 1, [GBM supports modifiers])],
|
|
- [AC_MSG_WARN([GBM does not support modifiers])])
|
|
PKG_CHECK_MODULES(DRM_COMPOSITOR_GBM, [gbm >= 17.2],
|
|
[AC_DEFINE([HAVE_GBM_FD_IMPORT], 1, [gbm supports import with modifiers])],
|
|
[AC_MSG_WARN([GBM does not support dmabuf import, will omit that capability])])
|
|
--
|
|
2.15.0
|
|
|