aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-12-10 15:32:23 +0100
committerSimon Ser <contact@emersion.fr>2023-12-25 11:47:15 +0100
commit7e1ae5548c69e1cee02c6ae12e7939a155ecb64e (patch)
tree96626a425b7588086bd83e40c488f269fd2541d0
parentd847516765879936844ffcf94c4c6d9c04727539 (diff)
compositor: add wlr_surface_role.client_commit
-rw-r--r--include/wlr/types/wlr_compositor.h9
-rw-r--r--types/wlr_compositor.c5
2 files changed, 14 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_compositor.h b/include/wlr/types/wlr_compositor.h
index 94262b4b..da12427e 100644
--- a/include/wlr/types/wlr_compositor.h
+++ b/include/wlr/types/wlr_compositor.h
@@ -82,6 +82,15 @@ struct wlr_surface_role {
*/
bool no_object;
/**
+ * Called when the client sends the wl_surface.commit request. May be NULL.
+ * Typically used to check that the pending state is valid, and send
+ * protocol errors if not.
+ *
+ * If the role is represented by an object, this is only called if
+ * such object exists.
+ */
+ void (*client_commit)(struct wlr_surface *surface);
+ /**
* Called when a new surface state is committed. May be NULL.
*
* If the role is represented by an object, this is only called if
diff --git a/types/wlr_compositor.c b/types/wlr_compositor.c
index d9c7b3c1..c3cc59a3 100644
--- a/types/wlr_compositor.c
+++ b/types/wlr_compositor.c
@@ -565,6 +565,11 @@ static void surface_handle_commit(struct wl_client *client,
struct wlr_surface *surface = wlr_surface_from_resource(resource);
surface_finalize_pending(surface);
+ if (surface->role != NULL && surface->role->client_commit != NULL &&
+ (surface->role_resource != NULL || surface->role->no_object)) {
+ surface->role->client_commit(surface);
+ }
+
wl_signal_emit_mutable(&surface->events.client_commit, NULL);
if (surface->pending.cached_state_locks > 0 || !wl_list_empty(&surface->cached)) {