diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-15 16:50:05 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-11-17 09:12:25 +0000 |
commit | ef5e2cc5e3db6243c5201734e8086a56182089b9 (patch) | |
tree | 4ddff4dc3070c652074371a9ce2beea1bf304e62 /backend/drm | |
parent | fdb24d19ca1cac68b5079f721f2d3a45ea0d2d60 (diff) |
output: call wlr_output_update_enabled() after commit
Backends no longer need to manually call wlr_output_update_enabled()
in their commit hook: wlr_output will take care of that.
Diffstat (limited to 'backend/drm')
-rw-r--r-- | backend/drm/drm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c index a7ff585e..2a89e6f9 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -595,9 +595,6 @@ bool drm_connector_commit_state(struct wlr_drm_connector *conn, return false; } - if (pending.base->committed & WLR_OUTPUT_STATE_ENABLED) { - wlr_output_update_enabled(&conn->output, pending.active); - } if (pending.base->committed & WLR_OUTPUT_STATE_MODE) { struct wlr_output_mode *mode = NULL; switch (pending.base->mode_type) { |