From 864c74f41acc2aa29694fcd6698bc58c4414bee4 Mon Sep 17 00:00:00 2001 From: Ronan Le Martret Date: Wed, 1 Mar 2017 15:07:32 +0100 Subject: update wayland-ivi-extension to 1.11.0 * remove patch already present in wayland-ivi-extension upstream * remove unused recipes wayland-ivi-extension 1.5.0 * wayland-ivi-extension_1.11.0.bb is a port of the recipes wayland-ivi-extension_1.10.90.bb from layer meta-ivi. * the wayland-ivi-extension_%.bbappend is the AGL part of the wayland-ivi-extension. patch -> commit id from upstream 0001-ivi-input-support-touch-and-pointer-on-subsurface.patch 183810b051a7a194bb260ff7db6c8a59ef44d18d Bug-AGL: SPEC-411 Change-Id: I0f27d00803cb5c06b9f2621918118c985a8dd9d6 Signed-off-by: Ronan Le Martret --- .../0001-Fix-ivi-application-lib-install.patch | 30 ++++ ...process-ID-that-created-surface-to-client.patch | 43 ----- ...t-support-touch-and-pointer-on-subsurface.patch | 191 --------------------- 3 files changed, 30 insertions(+), 234 deletions(-) create mode 100644 meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Fix-ivi-application-lib-install.patch delete mode 100644 meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Send-process-ID-that-created-surface-to-client.patch delete mode 100755 meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-ivi-input-support-touch-and-pointer-on-subsurface.patch (limited to 'meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension') diff --git a/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Fix-ivi-application-lib-install.patch b/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Fix-ivi-application-lib-install.patch new file mode 100644 index 000000000..4140ce576 --- /dev/null +++ b/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Fix-ivi-application-lib-install.patch @@ -0,0 +1,30 @@ +From 1e13c6d494a8b542c2a7f8251afc7aec401e3ad8 Mon Sep 17 00:00:00 2001 +From: Ronan Le Martret +Date: Tue, 7 Feb 2017 17:13:47 +0100 +Subject: [PATCH] Fix ivi-application lib install + + * libivi-application.so must be a link to + libivi-application.so.X.X.XX + * fix yocto package QA + +Signed-off-by: Ronan Le Martret +--- + protocol/CMakeLists.txt | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/protocol/CMakeLists.txt b/protocol/CMakeLists.txt +index 613a1a6..09d5126 100644 +--- a/protocol/CMakeLists.txt ++++ b/protocol/CMakeLists.txt +@@ -170,6 +170,8 @@ install( + DESTINATION include/ilm + ) + ++SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES VERSION ${ILM_API_VERSION} SOVERSION ${ILM_API_VERSION}) ++ + #============================================================================================= + # generate documentation for ivi-application API + #============================================================================================= +-- +2.6.6 + diff --git a/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Send-process-ID-that-created-surface-to-client.patch b/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Send-process-ID-that-created-surface-to-client.patch deleted file mode 100644 index 5c29d90e2..000000000 --- a/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-Send-process-ID-that-created-surface-to-client.patch +++ /dev/null @@ -1,43 +0,0 @@ -From f4adf64d979944aa80f1ba5dba4ed991b6620162 Mon Sep 17 00:00:00 2001 -From: Wataru Natsume -Date: Tue, 23 Feb 2016 11:14:53 +0900 -Subject: [PATCH] ivi-controller: Send process ID that created surface to - client. - -createPid should be a pid of process that creates surface. - -Signed-off-by: Wataru Natsume ---- - weston-ivi-shell/src/ivi-controller-impl.c | 13 ++++++++++++- - 1 file changed, 12 insertions(+), 1 deletion(-) - -diff --git a/weston-ivi-shell/src/ivi-controller-impl.c b/weston-ivi-shell/src/ivi-controller-impl.c -index f4e29ce..57bf5cc 100644 ---- a/weston-ivi-shell/src/ivi-controller-impl.c -+++ b/weston-ivi-shell/src/ivi-controller-impl.c -@@ -603,10 +603,21 @@ controller_surface_send_stats(struct wl_client *client, - struct wl_resource *resource) - { - struct ivisurface *ivisurf = wl_resource_get_user_data(resource); -+ struct weston_surface *surface; -+ struct wl_client* target_client; - pid_t pid; - uid_t uid; - gid_t gid; -- wl_client_get_credentials(client, &pid, &uid, &gid); -+ -+ /* Get pid that created surface */ -+ surface = ivi_extension_surface_get_weston_surface(ivisurf->shell, -+ ivisurf->layout_surface); -+ if (!surface) -+ return; -+ -+ target_client = wl_resource_get_client(surface->resource); -+ -+ wl_client_get_credentials(target_client, &pid, &uid, &gid); - - ivi_controller_surface_send_stats(resource, 0, 0, - ivisurf->update_count, pid, ""); --- -1.8.3.1 - diff --git a/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-ivi-input-support-touch-and-pointer-on-subsurface.patch b/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-ivi-input-support-touch-and-pointer-on-subsurface.patch deleted file mode 100755 index e1adf74ff..000000000 --- a/meta-ivi-common/recipes-graphics/wayland/wayland-ivi-extension/0001-ivi-input-support-touch-and-pointer-on-subsurface.patch +++ /dev/null @@ -1,191 +0,0 @@ -From e1823ef6721dec9db2343c7f92703d03a435e2bf Mon Sep 17 00:00:00 2001 -From: Ryo Kagaya -Date: Fri, 4 Nov 2016 18:30:06 +0900 -Subject: [PATCH] ivi-input: support touch and pointer on subsurface - -When sends event to client, find a focused surface from subsurface list. - -support following events - -touch_down - -touch_up - -touch_motion - -pointer_button ---- - .../src/ivi-input-controller.c | 78 ++++++++++++++++++---- - 1 file changed, 64 insertions(+), 14 deletions(-) - -diff --git a/ivi-input-modules/ivi-input-controller/src/ivi-input-controller.c b/ivi-input-modules/ivi-input-controller/src/ivi-input-controller.c -index 9ed85d2..b1f9d6d 100644 ---- a/ivi-input-modules/ivi-input-controller/src/ivi-input-controller.c -+++ b/ivi-input-modules/ivi-input-controller/src/ivi-input-controller.c -@@ -372,7 +372,8 @@ pointer_grab_button(struct weston_pointer_grab *grab, uint32_t time, - struct surface_ctx *surf_ctx; - wl_fixed_t sx, sy; - struct weston_view *picked_view, *w_view, *old_focus; -- struct weston_surface *w_surf; -+ struct weston_surface *w_surf, *send_surf; -+ struct weston_subsurface *sub; - struct wl_resource *resource; - struct wl_client *surface_client; - uint32_t serial; -@@ -391,12 +392,24 @@ pointer_grab_button(struct weston_pointer_grab *grab, uint32_t time, - /* search for the picked view in layout surfaces */ - wl_list_for_each(surf_ctx, &seat->input_ctx->surface_list, link) { - w_surf = interface->surface_get_weston_surface(surf_ctx->layout_surface); -- w_view = wl_container_of(w_surf->views.next, w_view, surface_link); -+ -+ /* Find a focused surface from subsurface list */ -+ send_surf = w_surf; -+ if (!wl_list_empty(&w_surf->subsurface_list)) { -+ wl_list_for_each(sub, &w_surf->subsurface_list, parent_link) { -+ if (sub->surface == picked_view->surface) { -+ send_surf = sub->surface; -+ break; -+ } -+ } -+ } -+ -+ w_view = wl_container_of(send_surf->views.next, w_view, surface_link); - - if (get_accepted_seat(surf_ctx, grab->pointer->seat->seat_name) < 0) - continue; - -- if (picked_view->surface == w_surf) { -+ if (picked_view->surface == send_surf) { - /* Correct layout surface is found*/ - surf_ctx->focus |= ILM_INPUT_DEVICE_POINTER; - send_input_focus(seat->input_ctx, -@@ -458,7 +471,8 @@ touch_grab_down(struct weston_touch_grab *grab, uint32_t time, int touch_id, - - /* For each surface_ctx, check for focus and send */ - wl_list_for_each(surf_ctx, &seat->input_ctx->surface_list, link) { -- struct weston_surface *surf; -+ struct weston_surface *surf, *send_surf; -+ struct weston_subsurface *sub; - struct weston_view *view; - struct wl_resource *resource; - struct wl_client *surface_client; -@@ -469,9 +483,20 @@ touch_grab_down(struct weston_touch_grab *grab, uint32_t time, int touch_id, - if (get_accepted_seat(surf_ctx, grab->touch->seat->seat_name) < 0) - continue; - -+ /* Find a focused surface from subsurface list */ -+ send_surf = surf; -+ if (!wl_list_empty(&surf->subsurface_list)) { -+ wl_list_for_each(sub, &surf->subsurface_list, parent_link) { -+ if (sub->surface == grab->touch->focus->surface) { -+ send_surf = sub->surface; -+ break; -+ } -+ } -+ } -+ - /* Touches set touch focus */ - if (grab->touch->num_tp == 1) { -- if (surf == grab->touch->focus->surface) { -+ if (send_surf == grab->touch->focus->surface) { - surf_ctx->focus |= ILM_INPUT_DEVICE_TOUCH; - send_input_focus(seat->input_ctx, - interface->get_id_of_surface(surf_ctx->layout_surface), -@@ -490,23 +515,23 @@ touch_grab_down(struct weston_touch_grab *grab, uint32_t time, int touch_id, - continue; - - /* Assume one view per surface */ -- view = wl_container_of(surf->views.next, view, surface_link); -+ view = wl_container_of(send_surf->views.next, view, surface_link); - weston_view_from_global_fixed(view, x, y, &sx, &sy); - -- surface_client = wl_resource_get_client(surf->resource); -+ surface_client = wl_resource_get_client(send_surf->resource); - serial = wl_display_next_serial(display); - wl_resource_for_each(resource, &grab->touch->resource_list) { - if (wl_resource_get_client(resource) != surface_client) - continue; - -- wl_touch_send_down(resource, serial, time, surf->resource, -+ wl_touch_send_down(resource, serial, time, send_surf->resource, - touch_id, sx, sy); - } - wl_resource_for_each(resource, &grab->touch->focus_resource_list) { - if (wl_resource_get_client(resource) != surface_client) - continue; - -- wl_touch_send_down(resource, serial, time, surf->resource, -+ wl_touch_send_down(resource, serial, time, send_surf->resource, - touch_id, sx, sy); - } - } -@@ -525,7 +550,8 @@ touch_grab_up(struct weston_touch_grab *grab, uint32_t time, int touch_id) - - /* For each surface_ctx, check for focus and send */ - wl_list_for_each(surf_ctx, &seat->input_ctx->surface_list, link) { -- struct weston_surface *surf; -+ struct weston_surface *surf, *send_surf; -+ struct weston_subsurface *sub; - struct wl_resource *resource; - struct wl_client *surface_client; - uint32_t serial; -@@ -537,8 +563,20 @@ touch_grab_up(struct weston_touch_grab *grab, uint32_t time, int touch_id) - continue; - - surf = interface->surface_get_weston_surface(surf_ctx->layout_surface); -- surface_client = wl_resource_get_client(surf->resource); - serial = wl_display_next_serial(display); -+ -+ /* Find a focused surface from subsurface list */ -+ send_surf = surf; -+ if (!wl_list_empty(&surf->subsurface_list)) { -+ wl_list_for_each(sub, &surf->subsurface_list, parent_link) { -+ if (sub->surface == grab->touch->focus->surface) { -+ send_surf = sub->surface; -+ break; -+ } -+ } -+ } -+ surface_client = wl_resource_get_client(send_surf->resource); -+ - wl_resource_for_each(resource, &grab->touch->resource_list) { - if (wl_resource_get_client(resource) != surface_client) - continue; -@@ -555,7 +593,7 @@ touch_grab_up(struct weston_touch_grab *grab, uint32_t time, int touch_id) - - /* Touches unset touch focus */ - if (grab->touch->num_tp == 0) { -- if (surf == grab->touch->focus->surface) -+ if (send_surf == grab->touch->focus->surface) - surf_ctx->focus &= ~ILM_INPUT_DEVICE_TOUCH; - send_input_focus(seat->input_ctx, - interface->get_id_of_surface(surf_ctx->layout_surface), -@@ -576,7 +614,8 @@ touch_grab_motion(struct weston_touch_grab *grab, uint32_t time, int touch_id, - - /* For each surface_ctx, check for focus and send */ - wl_list_for_each(surf_ctx, &seat->input_ctx->surface_list, link) { -- struct weston_surface *surf; -+ struct weston_surface *surf, *send_surf; -+ struct weston_subsurface *sub; - struct weston_view *view; - struct wl_resource *resource; - struct wl_client *surface_client; -@@ -592,7 +631,18 @@ touch_grab_motion(struct weston_touch_grab *grab, uint32_t time, int touch_id, - view = wl_container_of(surf->views.next, view, surface_link); - weston_view_from_global_fixed(view, x, y, &sx, &sy); - -- surface_client = wl_resource_get_client(surf->resource); -+ /* Find a focused surface from subsurface list */ -+ send_surf = surf; -+ if (!wl_list_empty(&surf->subsurface_list)) { -+ wl_list_for_each(sub, &surf->subsurface_list, parent_link) { -+ if (sub->surface == grab->touch->focus->surface) { -+ send_surf = sub->surface; -+ break; -+ } -+ } -+ } -+ surface_client = wl_resource_get_client(send_surf->resource); -+ - wl_resource_for_each(resource, &grab->touch->resource_list) { - if (wl_resource_get_client(resource) != surface_client) - continue; --- -1.9.1 - -- cgit 1.2.3-korg