mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 21:05:58 +01:00
backend/drm: clear pending cursor FB in drm_connector_commit_state()
Ensure we unlock any pending cursor FB when disabling a connector.
This commit is contained in:
parent
ea14e9c95f
commit
2c042566eb
1 changed files with 1 additions and 1 deletions
|
@ -623,6 +623,7 @@ bool drm_connector_commit_state(struct wlr_drm_connector *conn,
|
||||||
if (!pending.active) {
|
if (!pending.active) {
|
||||||
drm_plane_finish_surface(conn->crtc->primary);
|
drm_plane_finish_surface(conn->crtc->primary);
|
||||||
drm_plane_finish_surface(conn->crtc->cursor);
|
drm_plane_finish_surface(conn->crtc->cursor);
|
||||||
|
drm_fb_clear(&conn->cursor_pending_fb);
|
||||||
|
|
||||||
conn->cursor_enabled = false;
|
conn->cursor_enabled = false;
|
||||||
conn->crtc = NULL;
|
conn->crtc = NULL;
|
||||||
|
@ -892,7 +893,6 @@ static void drm_connector_destroy_output(struct wlr_output *output) {
|
||||||
|
|
||||||
conn->status = DRM_MODE_DISCONNECTED;
|
conn->status = DRM_MODE_DISCONNECTED;
|
||||||
conn->pending_page_flip_crtc = 0;
|
conn->pending_page_flip_crtc = 0;
|
||||||
drm_fb_clear(&conn->cursor_pending_fb);
|
|
||||||
|
|
||||||
struct wlr_drm_mode *mode, *mode_tmp;
|
struct wlr_drm_mode *mode, *mode_tmp;
|
||||||
wl_list_for_each_safe(mode, mode_tmp, &conn->output.modes, wlr_mode.link) {
|
wl_list_for_each_safe(mode, mode_tmp, &conn->output.modes, wlr_mode.link) {
|
||||||
|
|
Loading…
Reference in a new issue