Blame SOURCES/0001-wayland-Move-check-for-present-window-out-of-the-act.patch

327eb2
From 9269b09028ae51c7bb74e9cc9aefafd8eaa882d6 Mon Sep 17 00:00:00 2001
327eb2
From: Robert Mader <robert.mader@posteo.de>
327eb2
Date: Tue, 16 Apr 2019 23:35:28 +0200
327eb2
Subject: [PATCH 1/2] wayland: Move check for present window out of the
327eb2
 actor-surface class
327eb2
327eb2
All child classes of `MetaWaylandShellSurface` as well as
327eb2
`MetaWaylandSurfaceRoleXWayland` should only sync their actor if
327eb2
their toplevel surface has a window. Currently this check is done
327eb2
in the actor-surface class, but not all surface classes have a
327eb2
toplevel window, e.g. dnd-surfaces.
327eb2
Move the check to the right places.
327eb2
327eb2
For subsurfaces this assumes that the subsurface is not the child of
327eb2
a window-less surface (like, as stated above, e.g. a dnd-surface).
327eb2
If we want to support subsurfaces of window-less surfaces in the future
327eb2
we have to extend the check here.
327eb2
But as this is not a regression, ignore this case for now.
327eb2
327eb2
https://gitlab.gnome.org/GNOME/mutter/merge_requests/537
327eb2
(cherry picked from commit 7e2a0ede16bed5671fe55d3d81ccc9f82eebd94b)
327eb2
---
327eb2
 src/wayland/meta-wayland-actor-surface.c |  7 -------
327eb2
 src/wayland/meta-wayland-shell-surface.c | 20 ++++++++++++++++++++
327eb2
 src/wayland/meta-wayland-subsurface.c    |  5 ++++-
327eb2
 src/wayland/meta-xwayland.c              | 18 ++++++++++++++++++
327eb2
 4 files changed, 42 insertions(+), 8 deletions(-)
327eb2
327eb2
diff --git a/src/wayland/meta-wayland-actor-surface.c b/src/wayland/meta-wayland-actor-surface.c
327eb2
index 037dd901ab..e2143e51f1 100644
327eb2
--- a/src/wayland/meta-wayland-actor-surface.c
327eb2
+++ b/src/wayland/meta-wayland-actor-surface.c
327eb2
@@ -295,9 +295,6 @@ meta_wayland_actor_surface_commit (MetaWaylandSurfaceRole  *surface_role,
327eb2
     META_WAYLAND_ACTOR_SURFACE (surface_role);
327eb2
   MetaWaylandActorSurfacePrivate *priv =
327eb2
     meta_wayland_actor_surface_get_instance_private (actor_surface);
327eb2
-  MetaWaylandSurface *surface =
327eb2
-    meta_wayland_surface_role_get_surface (surface_role);
327eb2
-  MetaWaylandSurface *toplevel_surface;
327eb2
 
327eb2
   if (!wl_list_empty (&pending->frame_callback_list) &&
327eb2
       priv->actor &&
327eb2
@@ -311,10 +308,6 @@ meta_wayland_actor_surface_commit (MetaWaylandSurfaceRole  *surface_role,
327eb2
 
327eb2
   meta_wayland_actor_surface_queue_frame_callbacks (actor_surface, pending);
327eb2
 
327eb2
-  toplevel_surface = meta_wayland_surface_get_toplevel (surface);
327eb2
-  if (!toplevel_surface || !toplevel_surface->window)
327eb2
-    return;
327eb2
-
327eb2
   meta_wayland_actor_surface_sync_actor_state (actor_surface);
327eb2
 }
327eb2
 
327eb2
diff --git a/src/wayland/meta-wayland-shell-surface.c b/src/wayland/meta-wayland-shell-surface.c
327eb2
index 04f2aaeea8..f8354ab7c5 100644
327eb2
--- a/src/wayland/meta-wayland-shell-surface.c
327eb2
+++ b/src/wayland/meta-wayland-shell-surface.c
327eb2
@@ -175,6 +175,22 @@ meta_wayland_shell_surface_surface_commit (MetaWaylandSurfaceRole  *surface_role
327eb2
   window->buffer_rect.height = cogl_texture_get_height (texture) * scale;
327eb2
 }
327eb2
 
327eb2
+static void
327eb2
+meta_wayland_shell_surface_sync_actor_state (MetaWaylandActorSurface *actor_surface)
327eb2
+{
327eb2
+  MetaWaylandSurfaceRole *surface_role =
327eb2
+    META_WAYLAND_SURFACE_ROLE (actor_surface);
327eb2
+  MetaWaylandSurface *surface =
327eb2
+    meta_wayland_surface_role_get_surface (surface_role);
327eb2
+  MetaWaylandActorSurfaceClass *actor_surface_class =
327eb2
+    META_WAYLAND_ACTOR_SURFACE_CLASS (meta_wayland_shell_surface_parent_class);
327eb2
+  MetaWaylandSurface *toplevel_surface;
327eb2
+
327eb2
+  toplevel_surface = meta_wayland_surface_get_toplevel (surface);
327eb2
+  if (toplevel_surface && toplevel_surface->window)
327eb2
+    actor_surface_class->sync_actor_state (actor_surface);
327eb2
+}
327eb2
+
327eb2
 static void
327eb2
 meta_wayland_shell_surface_init (MetaWaylandShellSurface *role)
327eb2
 {
327eb2
@@ -185,6 +201,10 @@ meta_wayland_shell_surface_class_init (MetaWaylandShellSurfaceClass *klass)
327eb2
 {
327eb2
   MetaWaylandSurfaceRoleClass *surface_role_class =
327eb2
     META_WAYLAND_SURFACE_ROLE_CLASS (klass);
327eb2
+  MetaWaylandActorSurfaceClass *actor_surface_class =
327eb2
+    META_WAYLAND_ACTOR_SURFACE_CLASS (klass);
327eb2
 
327eb2
   surface_role_class->commit = meta_wayland_shell_surface_surface_commit;
327eb2
+  actor_surface_class->sync_actor_state =
327eb2
+    meta_wayland_shell_surface_sync_actor_state;
327eb2
 }
327eb2
diff --git a/src/wayland/meta-wayland-subsurface.c b/src/wayland/meta-wayland-subsurface.c
327eb2
index c7059b99a2..9a7ff3ec12 100644
327eb2
--- a/src/wayland/meta-wayland-subsurface.c
327eb2
+++ b/src/wayland/meta-wayland-subsurface.c
327eb2
@@ -199,8 +199,11 @@ meta_wayland_subsurface_sync_actor_state (MetaWaylandActorSurface *actor_surface
327eb2
     meta_wayland_surface_role_get_surface (surface_role);
327eb2
   MetaWaylandActorSurfaceClass *actor_surface_class =
327eb2
     META_WAYLAND_ACTOR_SURFACE_CLASS (meta_wayland_subsurface_parent_class);
327eb2
+  MetaWaylandSurface *toplevel_surface;
327eb2
 
327eb2
-  actor_surface_class->sync_actor_state (actor_surface);
327eb2
+  toplevel_surface = meta_wayland_surface_get_toplevel (surface);
327eb2
+  if (toplevel_surface && toplevel_surface->window)
327eb2
+    actor_surface_class->sync_actor_state (actor_surface);
327eb2
 
327eb2
   sync_actor_subsurface_state (surface);
327eb2
 }
327eb2
diff --git a/src/wayland/meta-xwayland.c b/src/wayland/meta-xwayland.c
327eb2
index 6e4b9a8ffd..b71c638d93 100644
327eb2
--- a/src/wayland/meta-xwayland.c
327eb2
+++ b/src/wayland/meta-xwayland.c
327eb2
@@ -794,6 +794,20 @@ xwayland_surface_get_toplevel (MetaWaylandSurfaceRole *surface_role)
327eb2
   return meta_wayland_surface_role_get_surface (surface_role);
327eb2
 }
327eb2
 
327eb2
+static void
327eb2
+xwayland_surface_sync_actor_state (MetaWaylandActorSurface *actor_surface)
327eb2
+{
327eb2
+  MetaWaylandSurfaceRole *surface_role =
327eb2
+    META_WAYLAND_SURFACE_ROLE (actor_surface);
327eb2
+  MetaWaylandSurface *surface =
327eb2
+    meta_wayland_surface_role_get_surface (surface_role);
327eb2
+  MetaWaylandActorSurfaceClass *actor_surface_class =
327eb2
+    META_WAYLAND_ACTOR_SURFACE_CLASS (meta_wayland_surface_role_xwayland_parent_class);
327eb2
+
327eb2
+  if (surface->window)
327eb2
+    actor_surface_class->sync_actor_state (actor_surface);
327eb2
+}
327eb2
+
327eb2
 static void
327eb2
 meta_wayland_surface_role_xwayland_init (MetaWaylandSurfaceRoleXWayland *role)
327eb2
 {
327eb2
@@ -804,9 +818,13 @@ meta_wayland_surface_role_xwayland_class_init (MetaWaylandSurfaceRoleXWaylandCla
327eb2
 {
327eb2
   MetaWaylandSurfaceRoleClass *surface_role_class =
327eb2
     META_WAYLAND_SURFACE_ROLE_CLASS (klass);
327eb2
+  MetaWaylandActorSurfaceClass *actor_surface_class =
327eb2
+    META_WAYLAND_ACTOR_SURFACE_CLASS (klass);
327eb2
 
327eb2
   surface_role_class->get_toplevel = xwayland_surface_get_toplevel;
327eb2
 
327eb2
+  actor_surface_class->sync_actor_state = xwayland_surface_sync_actor_state;
327eb2
+
327eb2
   xwayland_surface_signals[XWAYLAND_SURFACE_WINDOW_ASSOCIATED] =
327eb2
     g_signal_new ("window-associated",
327eb2
                   G_TYPE_FROM_CLASS (klass),
327eb2
-- 
327eb2
2.31.1
327eb2