In preparation for further refactoring.

Signed-off-by: Jonas Ådahl <jad...@gmail.com>
---
 desktop-shell/shell.c | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c
index 4b8724c..7ce951d 100644
--- a/desktop-shell/shell.c
+++ b/desktop-shell/shell.c
@@ -2777,7 +2777,7 @@ create_black_surface(struct weston_compositor *ec,
        }
 
        surface->configure = black_surface_configure;
-       surface->configure_private = fs_surface;
+       surface->configure_private = view;
        weston_surface_set_color(surface, 0.0, 0.0, 0.0, 1);
        pixman_region32_fini(&surface->opaque);
        pixman_region32_init_rect(&surface->opaque, 0, 0, w, h);
@@ -4914,11 +4914,13 @@ black_surface_configure(struct weston_surface *es, 
int32_t sx, int32_t sy)
 }
 
 static bool
-is_black_surface (struct weston_surface *es, struct weston_surface 
**fs_surface)
+is_black_surface(struct weston_view *view, struct weston_view **fs_view)
 {
+       struct weston_surface *es = view->surface;
+
        if (es->configure == black_surface_configure) {
-               if (fs_surface)
-                       *fs_surface = (struct weston_surface 
*)es->configure_private;
+               if (fs_view)
+                       *fs_view = (struct weston_view *) es->configure_private;
                return true;
        }
        return false;
@@ -4929,21 +4931,20 @@ activate_binding(struct weston_seat *seat,
                 struct desktop_shell *shell,
                 struct weston_view *focus_view)
 {
-       struct weston_surface *focus;
+       struct weston_view *main_view;
        struct weston_surface *main_surface;
 
        if (!focus_view)
                return;
-       focus = focus_view->surface;
 
-       if (is_black_surface(focus, &main_surface))
-               focus = main_surface;
+       if (is_black_surface(focus_view, &main_view))
+               focus_view = main_view;
 
-       main_surface = weston_surface_get_main_surface(focus);
+       main_surface = weston_surface_get_main_surface(focus_view->surface);
        if (get_shell_surface_type(main_surface) == SHELL_SURFACE_NONE)
                return;
 
-       activate(shell, focus, seat, true);
+       activate(shell, focus_view->surface, seat, true);
 }
 
 static void
@@ -5813,7 +5814,7 @@ switcher_next(struct switcher *switcher)
                        weston_surface_damage(view->surface);
                }
 
-               if (is_black_surface(view->surface, NULL)) {
+               if (is_black_surface(view, NULL)) {
                        view->alpha = 0.25;
                        weston_view_geometry_dirty(view);
                        weston_surface_damage(view->surface);
-- 
1.8.5.1

_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to