From f7afef0b1fa9a3f83257fd856271ac5634f5805c Mon Sep 17 00:00:00 2001 From: Rose Hudson Date: Thu, 10 Aug 2023 19:44:33 +0100 Subject: [PATCH] backend/drm: don't set frame_pending on modeset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3664#note_2020392 we're gonna have to trust Simon on this one 🤞 --- backend/drm/drm.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/drm/drm.c b/backend/drm/drm.c index d5f1808e..0765fd14 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -766,12 +766,6 @@ bool drm_connector_commit_state(struct wlr_drm_connector *conn, } if (flags & DRM_MODE_PAGE_FLIP_EVENT) { conn->pending_page_flip_crtc = conn->crtc->id; - - // wlr_output's API guarantees that submitting a buffer will schedule a - // frame event. However the DRM backend will also schedule a frame event - // when performing a modeset. Set frame_pending to true so that - // wlr_output_schedule_frame doesn't trigger a synthetic frame event. - conn->output.frame_pending = true; } out: