From ee9e9a51ee392d7b8638bf457a207f60e6922561 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 3 Nov 2014 11:29:59 -0500 Subject: [PATCH] e-comp-wl: Implement subsurface desynchronized_set function Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 2d7146fdb..c818e7974 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1337,7 +1337,17 @@ _e_comp_wl_subsurface_cb_sync_set(struct wl_client *client EINA_UNUSED, struct w static void _e_comp_wl_subsurface_cb_desync_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource) { + E_Client *ec; + E_Comp_Wl_Subsurf_Data *sdata; + DBG("Subsurface Cb Desync 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->synchronized = EINA_FALSE; } static const struct wl_subsurface_interface _e_subsurface_interface =