mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
backend/drm: leave CRTCs on when shutting down
This avoids a black screen during multiple seconds on shutdown. To fully allow for flicker-free transitions between DRM masters, we will also need [1]. [1]: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4394 Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3497
This commit is contained in:
parent
4932e0d347
commit
b0bd86285f
@ -35,6 +35,7 @@ static void backend_destroy(struct wlr_backend *backend) {
|
|||||||
|
|
||||||
struct wlr_drm_connector *conn, *next;
|
struct wlr_drm_connector *conn, *next;
|
||||||
wl_list_for_each_safe(conn, next, &drm->connectors, link) {
|
wl_list_for_each_safe(conn, next, &drm->connectors, link) {
|
||||||
|
conn->crtc = NULL; // leave CRTCs on when shutting down
|
||||||
destroy_drm_connector(conn);
|
destroy_drm_connector(conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user