mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-12 16:35:58 +01:00
backend/drm: commit/rollback FBs in drm_crtc_commit
We need to perform the FB bookkeeping on all commits, not just on page-flips.
This commit is contained in:
parent
70f3a0bb27
commit
80467f6ae8
1 changed files with 8 additions and 5 deletions
|
@ -338,8 +338,16 @@ static bool drm_crtc_commit(struct wlr_drm_connector *conn, uint32_t flags) {
|
|||
bool ok = drm->iface->crtc_commit(drm, conn, flags);
|
||||
if (ok && !(flags & DRM_MODE_ATOMIC_TEST_ONLY)) {
|
||||
memcpy(&crtc->current, &crtc->pending, sizeof(struct wlr_drm_crtc_state));
|
||||
drm_fb_move(&crtc->primary->queued_fb, &crtc->primary->pending_fb);
|
||||
if (crtc->cursor != NULL) {
|
||||
drm_fb_move(&crtc->cursor->queued_fb, &crtc->cursor->pending_fb);
|
||||
}
|
||||
} else {
|
||||
memcpy(&crtc->pending, &crtc->current, sizeof(struct wlr_drm_crtc_state));
|
||||
drm_fb_clear(&crtc->primary->pending_fb);
|
||||
if (crtc->cursor != NULL) {
|
||||
drm_fb_clear(&crtc->cursor->pending_fb);
|
||||
}
|
||||
}
|
||||
crtc->pending_modeset = false;
|
||||
return ok;
|
||||
|
@ -361,10 +369,6 @@ static bool drm_crtc_page_flip(struct wlr_drm_connector *conn) {
|
|||
}
|
||||
|
||||
conn->pageflip_pending = true;
|
||||
drm_fb_move(&crtc->primary->queued_fb, &crtc->primary->pending_fb);
|
||||
if (crtc->cursor != NULL) {
|
||||
drm_fb_move(&crtc->cursor->queued_fb, &crtc->cursor->pending_fb);
|
||||
}
|
||||
wlr_output_update_enabled(&conn->output, true);
|
||||
return true;
|
||||
}
|
||||
|
@ -495,7 +499,6 @@ static bool drm_connector_commit_buffer(struct wlr_output *output) {
|
|||
}
|
||||
|
||||
if (!drm_crtc_page_flip(conn)) {
|
||||
drm_fb_clear(&plane->pending_fb);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue