From: Mike Blumenkrantz Date: Fri, 21 Aug 2015 18:51:33 +0000 (-0400) Subject: add full damage for x11 override clients on resize configure event X-Git-Tag: upstream/0.20.0~325 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74d9792e89820c2ad8b337959b2aca45ecfd9e6b;p=platform%2Fupstream%2Fenlightenment.git add full damage for x11 override clients on resize configure event it seems that the reported damage events upon resizing an override window are not accurate, and so we must force a full damage here while avoiding a render queue in order to ensure that the full contents of the override will be rendered in the next frame fix T2045 --- diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 1b4ca1a..e986daf 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -1479,6 +1479,11 @@ _e_comp_x_configure(void *data EINA_UNUSED, int type EINA_UNUSED, Ecore_X_Event_ { e_pixmap_dirty(ec->pixmap); evas_object_resize(ec->frame, ev->w, ev->h); + if (ec->override && (!ec->input_only)) + { + e_comp_object_damage(ec->frame, 0, 0, ev->w, ev->h); + e_comp_object_render_update_del(ec->frame); + } } return ECORE_CALLBACK_RENEW; }