wayland: Don't require a new buffer to move windows with dx/dy

This doesn't match what Weston does. I don't know of any apps that this
fixes (we don't have any apps that even use non-zero dx/dy, I don't
think), but this is part of a cleanup for window geometry.
This commit is contained in:
Jasper St. Pierre 2014-07-17 14:15:05 -04:00
parent 567ca15610
commit 90d7737fc1

View File

@ -166,15 +166,10 @@ static void
toplevel_surface_commit (MetaWaylandSurface *surface,
MetaWaylandPendingState *pending)
{
if (pending->frame_extents_changed)
meta_window_set_custom_frame_extents (surface->window, &pending->frame_extents);
if (pending->newly_attached)
{
MetaWindow *window = surface->window;
MetaWaylandBuffer *buffer = pending->buffer;
if (buffer == NULL)
/* Sanity check. */
if (surface->buffer == NULL)
{
wl_resource_post_error (surface->resource,
WL_DISPLAY_ERROR_INVALID_OBJECT,
@ -182,13 +177,16 @@ toplevel_surface_commit (MetaWaylandSurface *surface,
return;
}
if (pending->frame_extents_changed)
meta_window_set_custom_frame_extents (surface->window, &pending->frame_extents);
/* We resize X based surfaces according to X events */
if (window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND)
{
int new_width, new_height;
new_width = cogl_texture_get_width (buffer->texture);
new_height = cogl_texture_get_height (buffer->texture);
new_width = cogl_texture_get_width (surface->buffer->texture);
new_height = cogl_texture_get_height (surface->buffer->texture);
if (new_width != window->rect.width ||
new_height != window->rect.height ||
@ -196,7 +194,6 @@ toplevel_surface_commit (MetaWaylandSurface *surface,
pending->dy != 0)
meta_window_wayland_move_resize (window, new_width, new_height, pending->dx, pending->dy);
}
}
}
static void
@ -269,13 +266,10 @@ static void
subsurface_surface_commit (MetaWaylandSurface *surface,
MetaWaylandPendingState *pending)
{
if (pending->newly_attached)
{
MetaSurfaceActor *surface_actor = surface->surface_actor;
MetaWaylandBuffer *buffer = pending->buffer;
float x, y;
if (buffer != NULL)
if (surface->buffer != NULL)
clutter_actor_show (CLUTTER_ACTOR (surface_actor));
else
clutter_actor_hide (CLUTTER_ACTOR (surface_actor));
@ -284,7 +278,6 @@ subsurface_surface_commit (MetaWaylandSurface *surface,
x += pending->dx;
y += pending->dy;
clutter_actor_set_position (CLUTTER_ACTOR (surface_actor), x, y);
}
}
static void
@ -423,16 +416,13 @@ wl_surface_attach (struct wl_client *client,
else
buffer = NULL;
if (surface->buffer == buffer)
return;
if (surface->pending.buffer)
wl_list_remove (&surface->pending.buffer_destroy_listener.link);
surface->pending.newly_attached = TRUE;
surface->pending.buffer = buffer;
surface->pending.dx = dx;
surface->pending.dy = dy;
surface->pending.buffer = buffer;
surface->pending.newly_attached = TRUE;
if (buffer)
wl_signal_add (&buffer->destroy_signal,