* [meta-fsl-arm][PATCH] qt4-x11: workaround QT/EGL mismatch for MX6
@ 2014-03-05 17:52 Javier Viguera
2014-03-07 14:55 ` Otavio Salvador
0 siblings, 1 reply; 3+ messages in thread
From: Javier Viguera @ 2014-03-05 17:52 UTC (permalink / raw)
To: meta-freescale
Fix following error:
Warning: EGL suggested using X Visual ID 33 (ARGB0888) for EGL config 28 (ARGB0444), but this is incompatable
Unable to find an X11 visual which matches EGL config 28
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
---
Notes:
Backport to Dora.
recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend | 2 ++
.../qt4/0003-i.MX6-force-egl-visual-ID-33.patch | 33 ++++++++++++++++++++++
2 files changed, 35 insertions(+)
create mode 100644 recipes-qt/qt4/qt4/0003-i.MX6-force-egl-visual-ID-33.patch
diff --git a/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend b/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
index 7090bedc5da3..cf763b64a459 100644
--- a/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
+++ b/recipes-qt/qt4/qt4-x11-free_4.8.5.bbappend
@@ -11,3 +11,5 @@ QT_CONFIG_FLAGS_append_mx6 = " -I${STAGING_KERNEL_DIR}/include/uapi \
-I${STAGING_KERNEL_DIR}/include/ \
-DLINUX=1 -DEGL_API_FB=1 \
-DQT_QPA_EXPERIMENTAL_TOUCHEVENT=1"
+
+SRC_URI_append_mx6 = " file://0003-i.MX6-force-egl-visual-ID-33.patch"
diff --git a/recipes-qt/qt4/qt4/0003-i.MX6-force-egl-visual-ID-33.patch b/recipes-qt/qt4/qt4/0003-i.MX6-force-egl-visual-ID-33.patch
new file mode 100644
index 000000000000..6417301d144b
--- /dev/null
+++ b/recipes-qt/qt4/qt4/0003-i.MX6-force-egl-visual-ID-33.patch
@@ -0,0 +1,33 @@
+From: Javier Viguera <javier.viguera@digi.com>
+Date: Mon, 3 Mar 2014 17:10:41 +0100
+Subject: [PATCH] i.MX6: force egl visual ID 33
+
+Workaround mismatch between EGL binary libraries and QT for FSL MX6
+based platforms.
+
+Error:
+Warning: EGL suggested using X Visual ID 33 (ARGB0888) for EGL config 28 (ARGB0444), but this is incompatable
+Unable to find an X11 visual which matches EGL config 28
+
+Patch adapted from:
+
+http://wiki.wandboard.org/index.php/Integrate_Qt5_into_yocto_sato_image_on_Wandboard
+
+Signed-off-by: Javier Viguera <javier.viguera@digi.com>
+---
+ src/gui/egl/qegl_x11.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/egl/qegl_x11.cpp b/src/gui/egl/qegl_x11.cpp
+index 196d0f77bf2d..8acf5a6c99d4 100644
+--- a/src/gui/egl/qegl_x11.cpp
++++ b/src/gui/egl/qegl_x11.cpp
+@@ -319,7 +319,7 @@ VisualID QEgl::getCompatibleVisualId(EGLConfig config)
+ }
+
+ qWarning("Unable to find an X11 visual which matches EGL config %d", configId);
+- return (VisualID)0;
++ return (VisualID)33;
+ }
+
+ void qt_set_winid_on_widget(QWidget* w, Qt::HANDLE id)
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-11 9:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-05 17:52 [meta-fsl-arm][PATCH] qt4-x11: workaround QT/EGL mismatch for MX6 Javier Viguera
2014-03-07 14:55 ` Otavio Salvador
2014-03-11 9:12 ` Javier Viguera
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.