From 4bbafeebb318fba62ae64bc3f7bafa8a728961b0 Mon Sep 17 00:00:00 2001 From: discomfitor Date: Sat, 18 May 2013 13:28:29 +0100 Subject: [PATCH] using pixmap w/h directly for comp mirrors is probably infinitesimally faster here --- src/bin/e_comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index 033765a80..6dc575cce 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -1962,7 +1962,7 @@ _e_comp_win_mirror_add(E_Comp_Win *cw) Eina_Bool alpha, argb = EINA_FALSE; alpha = evas_object_image_alpha_get(cw->obj); - evas_object_image_size_get(cw->obj, &w, &h); + w = cw->pw, h = cw->ph; evas_object_image_alpha_set(o, alpha);