discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=74c3e0a9791793dedbbf5ef16d57e09151a3f342
commit 74c3e0a9791793dedbbf5ef16d57e09151a3f342 Author: Mike Blumenkrantz <[email protected]> Date: Mon Sep 1 13:55:02 2014 -0400 shorten rendering path when creating comp mirrors from comp mirrors --- src/bin/e_comp_object.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 76150f5..321f5a0 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3350,6 +3350,7 @@ e_comp_object_util_mirror_add(Evas_Object *obj) SOFT_ENTRY(NULL); + cw = evas_object_data_get(obj, "comp_object"); if (!cw) { o = evas_object_image_filled_add(evas_object_evas_get(obj)); @@ -3367,6 +3368,7 @@ e_comp_object_util_mirror_add(Evas_Object *obj) cw->obj_mirror = eina_list_append(cw->obj_mirror, o); evas_object_event_callback_add(o, EVAS_CALLBACK_DEL, _e_comp_object_cb_mirror_del, cw); evas_object_data_set(o, "E_Client", cw->ec); + evas_object_data_set(o, "comp_object", cw); evas_object_image_alpha_set(o, cw->ec->argb || (!!cw->ec->shape_rects)); evas_object_image_size_set(o, w, h); --
