diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-09-29 16:35:30 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-09-29 16:35:30 -0400 |
commit | ba9233788290fd5f8fb75eaebe11e6c7ede2ff02 (patch) | |
tree | 178fbd69b33dc9e8ca10b363c8b40d100201fef5 | |
parent | bd8987c4d9904b4eb41b212f2a53c8c09d52cac2 (diff) | |
download | enlightenment-ba9233788290fd5f8fb75eaebe11e6c7ede2ff02.tar.gz |
never mark wl client pixmaps as dirty or refresh them
this has no meaning for a wl pixmap in the current implementation
-rw-r--r-- | src/bin/e_comp_wl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index da1bf55fc0..ca4949b009 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1721,8 +1721,6 @@ _e_comp_wl_subsurface_commit_from_cache(E_Client *ec) _e_comp_wl_surface_state_commit(ec, &sdata->cached); e_comp_wl_buffer_reference(&sdata->cached_buffer_ref, NULL); - - e_pixmap_refresh(ec->pixmap); } static void @@ -2789,7 +2787,6 @@ e_comp_wl_surface_attach(E_Client *ec, E_Comp_Wl_Buffer *buffer) /* set usable early because shell module checks this */ e_pixmap_usable_set(ec->pixmap, (buffer != NULL)); e_pixmap_resource_set(ec->pixmap, buffer); - e_pixmap_dirty(ec->pixmap); _e_comp_wl_surface_state_size_update(ec, &ec->comp_data->pending); } @@ -2805,8 +2802,6 @@ e_comp_wl_surface_commit(E_Client *ec) ignored = ec->ignored; - e_pixmap_refresh(ec->pixmap); - if (!e_pixmap_usable_get(ec->pixmap)) { if (ec->comp_data->mapped) |