backend/drm: ensure plane surfaces are cleaned up on shutdown

Right now this is done "by chance" because we disable all CRTCs
on shutdown. However, we'll stop doing this. Plus, if disabling
a CRTC fails, we don't cleanup properly.
This commit is contained in:
Simon Ser 2023-10-27 15:53:46 +02:00 committed by Alexander Orzechowski
parent 86b2cac921
commit 4932e0d347
1 changed files with 1 additions and 0 deletions

View File

@ -328,6 +328,7 @@ void finish_drm_resources(struct wlr_drm_backend *drm) {
for (size_t i = 0; i < drm->num_planes; ++i) {
struct wlr_drm_plane *plane = &drm->planes[i];
drm_plane_finish_surface(plane);
wlr_drm_format_set_finish(&plane->formats);
}