From 393f3c90dda27050c5264c3aa7bfdd75a87d2ff8 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 3 Nov 2014 11:28:31 -0500 Subject: [PATCH] e-comp-wl: Implement subsurface position set function Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 2eb6463..e32cd89 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1291,7 +1291,19 @@ _e_comp_wl_subsurface_cb_destroy(struct wl_client *client EINA_UNUSED, struct wl static void _e_comp_wl_subsurface_cb_position_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource, int32_t x, int32_t y) { + E_Client *ec; + E_Comp_Wl_Subsurf_Data *sdata; + DBG("Subsurface Cb Position Set: %d", wl_resource_get_id(resource)); + + /* try to get the client from resource data */ + if (!(ec = wl_resource_get_user_data(resource))) return; + + if (!(sdata = ec->comp_data->sub.data)) return; + + sdata->position.x = x; + sdata->position.y = y; + sdata->position.set = EINA_TRUE; } static void -- 2.7.4