summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/wayland/weston/0001-weston-patch-for-wl-shell-emulator.patch
blob: 1cef8dfe16bdc443233fa9e757bd86c9ef00a12e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
 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