From: Chris Michael Date: Wed, 9 Apr 2014 08:41:02 +0000 (+0100) Subject: ecore-wl: Optimize setting of window input region X-Git-Tag: v1.10.0-alpha1~211 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0e90d25e34b817befaddaf1126b1991b8f07119;p=platform%2Fupstream%2Fefl.git ecore-wl: Optimize setting of window input region @bugfix: Store the input region into the window structure, and don't re-add a duplicate input region (done by comparison of saved region). Signed-off-by: Chris Michael --- diff --git a/src/lib/ecore_wayland/ecore_wl_window.c b/src/lib/ecore_wayland/ecore_wl_window.c index 92b656e..5dfb35c 100644 --- a/src/lib/ecore_wayland/ecore_wl_window.c +++ b/src/lib/ecore_wayland/ecore_wl_window.c @@ -602,6 +602,17 @@ ecore_wl_window_input_region_set(Ecore_Wl_Window *win, int x, int y, int w, int if (!win) return; + win->input.x = x; + win->input.y = y; + if ((w > 0) && (h > 0)) + { + if ((win->input.w == w) && (win->input.h == h)) + return; + + win->input.w = w; + win->input.h = h; + } + if ((win->type != ECORE_WL_WINDOW_TYPE_FULLSCREEN) || (win->type != ECORE_WL_WINDOW_TYPE_DND)) {