diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-04-25 13:13:57 -0700 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-05-16 05:07:51 +0000 |
commit | d2eb5b67218f440806f32afa75a751b8c8d218c9 (patch) | |
tree | 05a2b2cc7cae12ea9b8b8ad3026a5b92a7b4eba8 /recipes-qt/qt5/qtwayland/0001-Avoid-attaching-NULL-buffer-while-hiding-EGL-windows.patch | |
parent | 0eea4306164f6a6d4567a9857c58fdc59c29a383 (diff) |
qt: enable upgrade to 5.8
Drop patches and bbappends that no longer apply. I audited these to
verify that they already exist upstream, and I believe we are OK.
Change-Id: I83f8334539d5542c7632b45e230d53915fdf18bf
Depends-On: I024b757d16e5891382f4286dadee3315163a79d5
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Diffstat (limited to 'recipes-qt/qt5/qtwayland/0001-Avoid-attaching-NULL-buffer-while-hiding-EGL-windows.patch')
-rw-r--r-- | recipes-qt/qt5/qtwayland/0001-Avoid-attaching-NULL-buffer-while-hiding-EGL-windows.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/recipes-qt/qt5/qtwayland/0001-Avoid-attaching-NULL-buffer-while-hiding-EGL-windows.patch b/recipes-qt/qt5/qtwayland/0001-Avoid-attaching-NULL-buffer-while-hiding-EGL-windows.patch deleted file mode 100644 index 67c4bba4f..000000000 --- a/recipes-qt/qt5/qtwayland/0001-Avoid-attaching-NULL-buffer-while-hiding-EGL-windows.patch +++ /dev/null @@ -1,31 +0,0 @@ -From f7947e9a0e6ae99e8fd0ab3c9176885f724ac87d Mon Sep 17 00:00:00 2001 -From: Prabhu Sundararaj <prabhu.sundararaj@nxp.com> -Date: Tue, 19 Jul 2016 12:14:26 -0500 -Subject: [PATCH] Avoid attaching NULL buffer while hiding EGL windows - -Incremental fix for QTBUG-46921. Destroying the callback for NULL surface is not -working all the time. If the window is hidden by destroying the EGL surface -and hence setting the NULL buffer is no longer required. - -Task-number:QTBUG-47902 -Signed-off-by: Prabhu Sundararaj <prabhu.sundararaj@nxp.com> ---- - src/client/qwaylandwindow.cpp | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp -index 2dd58e8..24b5653 100644 ---- a/src/client/qwaylandwindow.cpp -+++ b/src/client/qwaylandwindow.cpp -@@ -312,8 +312,6 @@ void QWaylandWindow::setVisible(bool visible) - QPointer<QWaylandWindow> deleteGuard(this); - QWindowSystemInterface::flushWindowSystemEvents(); - if (!deleteGuard.isNull()) { -- attach(static_cast<QWaylandBuffer *>(0), 0, 0); -- commit(); - if (mBackingStore) { - mBackingStore->hidden(); - } --- -2.7.4 - |