e-comp-wl: Implement subsurface desynchronized_set function

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-11-03 11:29:59 -05:00
parent 60c967a5ba
commit ee9e9a51ee
1 changed files with 10 additions and 0 deletions

View File

@ -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 =