diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2018-04-02 22:39:34 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-04-03 10:55:09 +0100 |
commit | 8509e2e1a87578882b71948ccef3b50ccf1228b3 (patch) | |
tree | f53a3132a70dee2dcada78eb0822dcc4852565c0 | |
parent | bfd5d2cefd56cb60b51b2bed57cb92dcfd5756c9 (diff) | |
download | openembedded-core-8509e2e1a87578882b71948ccef3b50ccf1228b3.tar.gz openembedded-core-8509e2e1a87578882b71948ccef3b50ccf1228b3.tar.bz2 openembedded-core-8509e2e1a87578882b71948ccef3b50ccf1228b3.zip |
mesa: Prefer dri3 for x11/opengl
Adresses [1]
https://bugzilla.yoctoproject.org/show_bug.cgi?id=12642
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index 9e4da81f7f..639eb35f6b 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc @@ -40,7 +40,7 @@ EXTRA_OECONF = "--enable-shared-glapi \ PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland vulkan', d)} \ ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'opengl egl gles gbm dri', '', d)} \ - ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'x11', '', d)} \ + ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'x11 dri3', '', d)} \ ${@bb.utils.contains('DISTRO_FEATURES', 'x11 vulkan', 'dri3', '', d)} \ " |