aports/testing/wlroots0.16/0002-wlr-export-dmabuf-v1--handle-output-destroy.patch
omni 80829f088d testing/wlroots0.16: move from community
needed only by testing/tabby & testing/wayqt
2024-10-28 13:46:04 +00:00

72 lines
2.7 KiB
Diff

Patch-Source: https://gitlab.freedesktop.org/emersion/wlroots/-/commit/2a1234a820393025063a36b750dfbbf240ba9bdd
--
From b359ae8a37e983ae7a5deaa995c60e070966ffe6 Mon Sep 17 00:00:00 2001
From: Simon Ser <contact@emersion.fr>
Date: Wed, 10 May 2023 16:31:48 +0200
Subject: [PATCH] wlr-export-dmabuf-v1: handle output destroy
We were storing a wlr_output without listening for the destroy
event.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3646
---
include/wlr/types/wlr_export_dmabuf_v1.h | 1 +
types/wlr_export_dmabuf_v1.c | 9 +++++++++
2 files changed, 10 insertions(+)
diff --git a/include/wlr/types/wlr_export_dmabuf_v1.h b/include/wlr/types/wlr_export_dmabuf_v1.h
index 39e83be72..ba2d8bd85 100644
--- a/include/wlr/types/wlr_export_dmabuf_v1.h
+++ b/include/wlr/types/wlr_export_dmabuf_v1.h
@@ -34,6 +34,7 @@ struct wlr_export_dmabuf_frame_v1 {
bool cursor_locked;
struct wl_listener output_commit;
+ struct wl_listener output_destroy;
};
struct wlr_export_dmabuf_manager_v1 *wlr_export_dmabuf_manager_v1_create(
diff --git a/types/wlr_export_dmabuf_v1.c b/types/wlr_export_dmabuf_v1.c
index c1d26e604..138c52d1a 100644
--- a/types/wlr_export_dmabuf_v1.c
+++ b/types/wlr_export_dmabuf_v1.c
@@ -41,6 +41,7 @@ static void frame_destroy(struct wlr_export_dmabuf_frame_v1 *frame) {
}
wl_list_remove(&frame->link);
wl_list_remove(&frame->output_commit.link);
+ wl_list_remove(&frame->output_destroy.link);
// Make the frame resource inert
wl_resource_set_user_data(frame->resource, NULL);
free(frame);
@@ -93,6 +94,11 @@ static void frame_output_handle_commit(struct wl_listener *listener,
frame_destroy(frame);
}
+static void frame_output_handle_destroy(struct wl_listener *listener, void *data) {
+ struct wlr_export_dmabuf_frame_v1 *frame = wl_container_of(listener, frame, output_destroy);
+ frame_destroy(frame);
+}
+
static const struct zwlr_export_dmabuf_manager_v1_interface manager_impl;
@@ -118,6 +124,7 @@ static void manager_handle_capture_output(struct wl_client *client,
}
frame->manager = manager;
wl_list_init(&frame->output_commit.link);
+ wl_list_init(&frame->output_destroy.link);
uint32_t version = wl_resource_get_version(manager_resource);
frame->resource = wl_resource_create(client,
@@ -150,6 +157,8 @@ static void manager_handle_capture_output(struct wl_client *client,
wl_list_remove(&frame->output_commit.link);
wl_signal_add(&output->events.commit, &frame->output_commit);
frame->output_commit.notify = frame_output_handle_commit;
+ wl_signal_add(&output->events.destroy, &frame->output_destroy);
+ frame->output_destroy.notify = frame_output_handle_destroy;
wlr_output_schedule_frame(output);
}
--
GitLab