devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=ee9e9a51ee392d7b8638bf457a207f60e6922561

commit ee9e9a51ee392d7b8638bf457a207f60e6922561
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Mon Nov 3 11:29:59 2014 -0500

    e-comp-wl: Implement subsurface desynchronized_set function
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 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 2d7146f..c818e79 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 = 

-- 


Reply via email to