aboutsummaryrefslogtreecommitdiff
path: root/tinywl
diff options
context:
space:
mode:
authorxiaoyaobing <1109050030@qq.com>2022-05-03 00:08:32 +0800
committerKirill Primak <vyivel@eclair.cafe>2022-05-06 20:05:17 +0300
commitcb012c5cb53a937037717ac79c125922e37193da (patch)
tree8d0840287a7b9006dc2eb9a908ea994b2ec32de6 /tinywl
parent410c08cdc676de1f24d71d8817587e1f7e6b4093 (diff)
tinywl/tinywl: clean up tinywl_output when wlr_output is gone
Add destroy event processing. Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3416
Diffstat (limited to 'tinywl')
-rw-r--r--tinywl/tinywl.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/tinywl/tinywl.c b/tinywl/tinywl.c
index 2ab0bcc0..7f6de6bc 100644
--- a/tinywl/tinywl.c
+++ b/tinywl/tinywl.c
@@ -73,6 +73,7 @@ struct tinywl_output {
struct tinywl_server *server;
struct wlr_output *wlr_output;
struct wl_listener frame;
+ struct wl_listener destroy;
};
struct tinywl_view {
@@ -549,6 +550,15 @@ static void output_frame(struct wl_listener *listener, void *data) {
wlr_scene_output_send_frame_done(scene_output, &now);
}
+static void output_destroy(struct wl_listener *listener, void *data) {
+ struct tinywl_output *output = wl_container_of(listener, output, destroy);
+
+ wl_list_remove(&output->frame.link);
+ wl_list_remove(&output->destroy.link);
+ wl_list_remove(&output->link);
+ free(output);
+}
+
static void server_new_output(struct wl_listener *listener, void *data) {
/* This event is raised by the backend when a new output (aka a display or
* monitor) becomes available. */
@@ -582,6 +592,11 @@ static void server_new_output(struct wl_listener *listener, void *data) {
/* Sets up a listener for the frame notify event. */
output->frame.notify = output_frame;
wl_signal_add(&wlr_output->events.frame, &output->frame);
+
+ /* Sets up a listener for the destroy notify event. */
+ output->destroy.notify = output_destroy;
+ wl_signal_add(&wlr_output->events.destroy, &output->destroy);
+
wl_list_insert(&server->outputs, &output->link);
/* Adds this to the output layout. The add_auto function arranges outputs