summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/wayland/weston
diff options
context:
space:
mode:
authorRonan Le Martret <ronan.lemartret@iot.bzh>2017-03-22 15:33:31 +0100
committerRonan Le Martret <ronan.lemartret@iot.bzh>2017-03-22 15:33:31 +0100
commit2b3274c45a9d384dd8b99308890f9c4c3695276b (patch)
tree929fca85a688915a158756c4a78a34304a67f395 /recipes-graphics/wayland/weston
parentdd71a9fe47f3091e352de1b21330b35be4152efa (diff)
Removed wl-shell-emulator from AGL
Since CES2017, AGL doesn't use 'layer-add-surfaces' command. wl-shell-emultor.so is only required by 'layer-add-surfaces'. So we can remove wl-shell-emultor from AGL. Bug-AGL: SPEC-341 Change-Id: Icfaf91de624ed89e9640a9daf1a92b5de8912863 Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'recipes-graphics/wayland/weston')
-rw-r--r--recipes-graphics/wayland/weston/0001-weston-patch-for-wl-shell-emulator.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/recipes-graphics/wayland/weston/0001-weston-patch-for-wl-shell-emulator.patch b/recipes-graphics/wayland/weston/0001-weston-patch-for-wl-shell-emulator.patch
deleted file mode 100644
index 1cef8dfe..00000000
--- a/recipes-graphics/wayland/weston/0001-weston-patch-for-wl-shell-emulator.patch
+++ /dev/null
@@ -1,50 +0,0 @@
----
- ivi-shell/ivi-layout-export.h | 19 +++++++++++++++++++
- ivi-shell/ivi-layout.c | 2 ++
- 2 files changed, 21 insertions(+)
-
-diff --git a/ivi-shell/ivi-layout-export.h b/ivi-shell/ivi-layout-export.h
-index 8a92009..7f93c82 100644
---- a/ivi-shell/ivi-layout-export.h
-+++ b/ivi-shell/ivi-layout-export.h
-@@ -185,6 +185,25 @@ struct ivi_layout_interface {
- int32_t (*commit_changes)(void);
-
- /**
-+ * \brief Creates an ivi_layout_surface.
-+ *
-+ * \return IVI_SUCCEEDED if the method call was successful
-+ * \return IVI_FAILED if the method call was failed
-+ */
-+ struct ivi_layout_surface* (*surface_create)(
-+ struct weston_surface *wl_surface,
-+ uint32_t id_surface);
-+
-+ /**
-+ * \brief Configure an ivi_layout_surface
-+ *
-+ * \return IVI_SUCCEEDED if the method call was successful
-+ * \return IVI_FAILED if the method call was failed
-+ */
-+ void (*surface_configure)(struct ivi_layout_surface *ivisurf,
-+ int32_t width, int32_t height);
-+
-+ /**
- * surface controller interface
- */
-
-diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c
-index 51d0a8d..76891bf 100644
---- a/ivi-shell/ivi-layout.c
-+++ b/ivi-shell/ivi-layout.c
-@@ -2870,6 +2870,8 @@ static struct ivi_layout_interface ivi_layout_interface = {
- */
- .commit_changes = ivi_layout_commit_changes,
-
-+ .surface_create = ivi_layout_surface_create,
-+ .surface_configure = ivi_layout_surface_configure,
- /**
- * surface controller interfaces
- */
---
-1.8.3.1