mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 00:22:25 +00:00
backend/drm: only request page-flip if active
It doesn't make sense to request a page-flip for a disabled output.
Fixes: 84e727daae
("backend/drm: request page-flip event on modeset")
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3528
This commit is contained in:
parent
258bf9be1e
commit
f863b93c05
@ -577,7 +577,7 @@ bool drm_connector_commit_state(struct wlr_drm_connector *conn,
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (pending.modeset) {
|
||||
if (pending.modeset && pending.active) {
|
||||
flags |= DRM_MODE_PAGE_FLIP_EVENT;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user