From: Pekka Paalanen Date: Fri, 10 Feb 2012 13:33:10 +0000 (+0200) Subject: shell: replace identity calls to weston_surface_configure() X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc6d91a5686d647669167f7282f4d01636826df4;p=profile%2Fivi%2Fweston-ivi-shell.git shell: replace identity calls to weston_surface_configure() In the past, weston_surface_configure() was used to change the geometry, apply damage, and assign an output. Remove all calls to weston_surface_configure() that do not change the surface geometry. Add damage calls where needed to keep the wanted configure side-effects. Signed-off-by: Pekka Paalanen --- diff --git a/src/shell.c b/src/shell.c index 38a2600..869eb22 100644 --- a/src/shell.c +++ b/src/shell.c @@ -712,12 +712,8 @@ show_screensaver(struct wl_shell *shell, struct shell_surface *surface) wl_list_remove(&surface->surface->link); wl_list_insert(list, &surface->surface->link); - weston_surface_configure(surface->surface, - surface->surface->geometry.x, - surface->surface->geometry.y, - surface->surface->geometry.width, - surface->surface->geometry.height); surface->surface->output = surface->output; + weston_surface_damage(surface->surface); } static void @@ -854,13 +850,8 @@ resume_desktop(struct wl_shell *shell) terminate_screensaver(shell); - wl_list_for_each(surface, &shell->hidden_surface_list, link) { - weston_surface_configure(surface, surface->geometry.x, - surface->geometry.y, - surface->geometry.width, - surface->geometry.height); + wl_list_for_each(surface, &shell->hidden_surface_list, link) weston_surface_assign_output(surface); - } if (wl_list_empty(&shell->backgrounds)) { list = &shell->compositor->surface_list; @@ -879,6 +870,7 @@ resume_desktop(struct wl_shell *shell) weston_compositor_repick(shell->compositor); shell->compositor->idle_time = shell->compositor->option_idle_time; weston_compositor_wake(shell->compositor); + weston_compositor_damage_all(shell->compositor); } static void @@ -1391,9 +1383,6 @@ map(struct weston_shell *base, surface->geometry.height = height; surface->geometry.dirty = 1; if (do_configure) { - weston_surface_configure(surface, surface->geometry.x, - surface->geometry.y, - width, height); weston_surface_assign_output(surface); weston_compositor_repick(compositor); }