aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--types/wlr_output.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/types/wlr_output.c b/types/wlr_output.c
index d4c6b2fe..c4589487 100644
--- a/types/wlr_output.c
+++ b/types/wlr_output.c
@@ -504,6 +504,12 @@ void wlr_output_cursor_destroy(struct wlr_output_cursor *cursor) {
}
cursor->output->hardware_cursor = NULL;
}
+ if (cursor->texture != NULL) {
+ wlr_texture_destroy(cursor->texture);
+ }
+ if (cursor->renderer != NULL) {
+ wlr_renderer_destroy(cursor->renderer);
+ }
wl_list_remove(&cursor->link);
free(cursor);
}