backend/x11: destroy buffers when destroying output

This commit is contained in:
Simon Ser 2020-12-12 13:15:07 +01:00
parent d6dbdd97e9
commit 55b02f753f
1 changed files with 7 additions and 0 deletions

View File

@ -82,6 +82,8 @@ static bool output_set_custom_mode(struct wlr_output *wlr_output,
return true;
}
static void destroy_x11_buffer(struct wlr_x11_buffer *buffer);
static void output_destroy(struct wlr_output *wlr_output) {
struct wlr_x11_output *output = get_x11_output_from_output(wlr_output);
struct wlr_x11_backend *x11 = output->x11;
@ -89,6 +91,11 @@ static void output_destroy(struct wlr_output *wlr_output) {
wlr_input_device_destroy(&output->pointer_dev);
wlr_input_device_destroy(&output->touch_dev);
struct wlr_x11_buffer *buffer, *buffer_tmp;
wl_list_for_each_safe(buffer, buffer_tmp, &output->buffers, link) {
destroy_x11_buffer(buffer);
}
wl_list_remove(&output->link);
wl_event_source_remove(output->frame_timer);
wlr_buffer_unlock(output->back_buffer);