mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 01:50:42 -05:00
wayland-surface: Restructure code flow in wl_surface_attach a bit more...
This commit is contained in:
parent
ea1b8cdc22
commit
7841042a85
@ -156,7 +156,11 @@ meta_surface_actor_attach_wayland_buffer (MetaSurfaceActor *self,
|
|||||||
{
|
{
|
||||||
MetaSurfaceActorPrivate *priv = self->priv;
|
MetaSurfaceActorPrivate *priv = self->priv;
|
||||||
priv->buffer = buffer;
|
priv->buffer = buffer;
|
||||||
meta_shaped_texture_set_texture (self->priv->texture, buffer->texture);
|
|
||||||
|
if (buffer)
|
||||||
|
meta_shaped_texture_set_texture (self->priv->texture, buffer->texture);
|
||||||
|
else
|
||||||
|
meta_shaped_texture_set_texture (self->priv->texture, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -286,33 +286,28 @@ toplevel_surface_commit (MetaWaylandSurface *surface)
|
|||||||
{
|
{
|
||||||
ensure_buffer_texture (buffer);
|
ensure_buffer_texture (buffer);
|
||||||
meta_wayland_buffer_reference (&surface->buffer_ref, buffer);
|
meta_wayland_buffer_reference (&surface->buffer_ref, buffer);
|
||||||
|
meta_surface_actor_attach_wayland_buffer (surface_actor, buffer);
|
||||||
|
surface_process_damage (surface, surface->pending.damage);
|
||||||
|
|
||||||
meta_window_set_surface_mapped (window, buffer != NULL);
|
meta_window_set_surface_mapped (window, buffer != NULL);
|
||||||
|
|
||||||
if (buffer != NULL)
|
/* We resize X based surfaces according to X events */
|
||||||
|
if (buffer != NULL && window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND)
|
||||||
{
|
{
|
||||||
meta_surface_actor_attach_wayland_buffer (surface_actor, buffer);
|
int new_width;
|
||||||
|
int new_height;
|
||||||
|
|
||||||
/* We resize X based surfaces according to X events */
|
new_width = surface->buffer_ref.buffer->width;
|
||||||
if (window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND)
|
new_height = surface->buffer_ref.buffer->height;
|
||||||
{
|
if (new_width != window->rect.width ||
|
||||||
int new_width;
|
new_height != window->rect.height ||
|
||||||
int new_height;
|
surface->pending.dx != 0 ||
|
||||||
|
surface->pending.dy != 0)
|
||||||
new_width = surface->buffer_ref.buffer->width;
|
meta_window_move_resize_wayland (window, new_width, new_height,
|
||||||
new_height = surface->buffer_ref.buffer->height;
|
surface->pending.dx, surface->pending.dy);
|
||||||
if (new_width != window->rect.width ||
|
|
||||||
new_height != window->rect.height ||
|
|
||||||
surface->pending.dx != 0 ||
|
|
||||||
surface->pending.dy != 0)
|
|
||||||
meta_window_move_resize_wayland (window, new_width, new_height,
|
|
||||||
surface->pending.dx, surface->pending.dy);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
surface_process_damage (surface, surface->pending.damage);
|
|
||||||
|
|
||||||
if (surface->pending.opaque_region)
|
if (surface->pending.opaque_region)
|
||||||
meta_surface_actor_set_opaque_region (surface_actor, surface->pending.opaque_region);
|
meta_surface_actor_set_opaque_region (surface_actor, surface->pending.opaque_region);
|
||||||
if (surface->pending.input_region)
|
if (surface->pending.input_region)
|
||||||
|
Loading…
Reference in New Issue
Block a user