summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
diff options
context:
space:
mode:
authorRonan Le Martret <ronan.lemartret@iot.bzh>2017-03-01 15:32:47 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2017-03-21 14:36:05 +0000
commitdd71a9fe47f3091e352de1b21330b35be4152efa (patch)
treef3fcdc61f5d0c43ff0d6a5751851f2dbd5b6b258 /recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
parent28d9892a442da85ab0a7ba815ce2fd9982e7e29a (diff)
Remove forward port for weston
* The forward port on weston is now merged in weston upstream * fix the patch 0001-weston-patch-for-wl-shell-emulator.patch for weston 1.11 patch -> commit id from upstream 0001-ivi-shell-fix-TODO-which-expects-only-one-screen-in-.patch b216c92d4d19d4b88817d088038de90f3d95ec06 0002-ivi-shell-avoid-inserting-a-ivi_layer-to-multiple-sc.patch 77b0ee18a2e02e6084ece3d04914f7e8f4c6dcb9 0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch fbfa8f21f91dfd1a1d85f9c6b039fe893a36e69b 0004-ivi-shell-remove-a-code-which-expects-only-a-screen-.patch 747c3865ab7bf8defc7a0cacf148b547c949f303 0005-ivi-shell-multi-screen-support.-ivi_layout_screen-to.patch b4cb25dc261375bad87d1c1dd058b9716009e6fb 0006-ivi-shell-transforming-from-a-single-screen-coordina.patch 29babdf099fee228883ab6425811f11135296274 0007-RFR-ivi-shell-multi-screen-support-to-calcuration-of.patch 1c2618e9ff58d355714bcdde61f87a6e918f3059 Bug-AGL: SPEC-411 Change-Id: I58a23f3fe4046ef2befb594bf0f76f34c4d15312 Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch')
-rw-r--r--recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch b/recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
deleted file mode 100644
index e828493d..00000000
--- a/recipes-graphics/wayland/weston/0003-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 83b1873a62c991f15a698e4de50182e4cf452be0 Mon Sep 17 00:00:00 2001
-From: Koji Ohira <kk.ohira.koji@nttd-mse.com>
-Date: Thu, 24 Nov 2016 21:06:56 +0900
-Subject: [PATCH] ivi-shell: fix layout_layer.view_list is not initilized per a
- screen.
-
-This is potential bug when it supports several screens. If view_list is
-initilized here, the views, which are set by the previous screen, are
-cleared. So View list shall be initilized in front of wl_list_for_each
-of all screens.
-
-Signed-off-by: Koji Ohira <kk.ohira.koji@nttd-mse.com>
----
- ivi-shell/ivi-layout.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c
-index 1139590..b14726e 100644
---- a/ivi-shell/ivi-layout.c
-+++ b/ivi-shell/ivi-layout.c
-@@ -960,6 +960,9 @@ commit_screen_list(struct ivi_layout *layout)
- struct ivi_layout_layer *next = NULL;
- struct ivi_layout_surface *ivisurf = NULL;
-
-+ /* Clear view list of layout ivi_layer */
-+ wl_list_init(&layout->layout_layer.view_list.link);
-+
- wl_list_for_each(iviscrn, &layout->screen_list, link) {
- if (iviscrn->order.dirty) {
- wl_list_for_each_safe(ivilayer, next,
-@@ -986,9 +989,6 @@ commit_screen_list(struct ivi_layout *layout)
- iviscrn->order.dirty = 0;
- }
-
-- /* Clear view list of layout ivi_layer */
-- wl_list_init(&layout->layout_layer.view_list.link);
--
- wl_list_for_each(ivilayer, &iviscrn->order.layer_list, order.link) {
- if (ivilayer->prop.visibility == false)
- continue;
---
-2.7.4
-