From 1cbf3262dd31a76f72760cf7411213f06a7efb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= Date: Fri, 17 Feb 2012 23:49:07 -0500 Subject: [PATCH] compositor: Move fullscreen_output to shell_surface --- src/compositor.c | 1 - src/compositor.h | 1 - src/shell.c | 11 ++++++----- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/compositor.c b/src/compositor.c index a505f88f..b8ef290f 100644 --- a/src/compositor.c +++ b/src/compositor.c @@ -193,7 +193,6 @@ weston_surface_create(struct weston_compositor *compositor) surface->image = EGL_NO_IMAGE_KHR; surface->alpha = 255; - surface->fullscreen_output = NULL; surface->buffer = NULL; surface->output = NULL; diff --git a/src/compositor.h b/src/compositor.h index efd71e9c..7dda3113 100644 --- a/src/compositor.h +++ b/src/compositor.h @@ -285,7 +285,6 @@ struct weston_surface { */ struct weston_output *output; - struct weston_output *fullscreen_output; struct wl_list frame_callback_list; EGLImageKHR image; diff --git a/src/shell.c b/src/shell.c index e4d4768c..79252628 100644 --- a/src/shell.c +++ b/src/shell.c @@ -108,6 +108,7 @@ struct shell_surface { int32_t initial_up; } popup; + struct weston_output *fullscreen_output; struct weston_output *output; struct wl_list link; }; @@ -355,7 +356,7 @@ reset_shell_surface_type(struct shell_surface *surface) weston_surface_set_position(surface->surface, surface->saved_x, surface->saved_y); - surface->surface->fullscreen_output = NULL; + surface->fullscreen_output = NULL; break; case SHELL_SURFACE_MAXIMIZED: surface->output = get_default_output(surface->surface->compositor); @@ -503,7 +504,7 @@ shell_surface_set_fullscreen(struct wl_client *client, shsurf->saved_x = es->geometry.x; shsurf->saved_y = es->geometry.y; - es->fullscreen_output = output; + shsurf->fullscreen_output = output; shsurf->type = SHELL_SURFACE_FULLSCREEN; wl_resource_post_event(resource, @@ -1374,7 +1375,7 @@ map(struct weston_shell *base, struct weston_surface *surface, break; case SHELL_SURFACE_SCREENSAVER: case SHELL_SURFACE_FULLSCREEN: - center_on_output(surface, surface->fullscreen_output); + center_on_output(surface, shsurf->fullscreen_output); break; case SHELL_SURFACE_MAXIMIZED: /*use surface configure to set the geometry*/ @@ -1486,7 +1487,7 @@ configure(struct weston_shell *base, struct weston_surface *surface, switch (surface_type) { case SHELL_SURFACE_SCREENSAVER: case SHELL_SURFACE_FULLSCREEN: - center_on_output(surface, surface->fullscreen_output); + center_on_output(surface, shsurf->fullscreen_output); break; case SHELL_SURFACE_MAXIMIZED: /*setting x, y and using configure to change that geometry*/ @@ -1612,7 +1613,7 @@ screensaver_set_surface(struct wl_client *client, surface->type = SHELL_SURFACE_SCREENSAVER; - surface->surface->fullscreen_output = output; + surface->fullscreen_output = output; surface->output = output; wl_list_insert(shell->screensaver.surfaces.prev, &surface->link); }