backend/drm: Do not require mode commit on enable
If a mode is not provided, use the current mode intead. Closes: https://github.com/swaywm/wlroots/issues/2904
This commit is contained in:
parent
c85789a3a9
commit
2603a5dee7
|
@ -729,9 +729,12 @@ static bool drm_connector_set_mode(struct wlr_drm_connector *conn,
|
|||
|
||||
struct wlr_output_mode *wlr_mode = NULL;
|
||||
if (drm_connector_state_active(conn, state)) {
|
||||
assert(state->committed & WLR_OUTPUT_STATE_MODE);
|
||||
if (state->committed & WLR_OUTPUT_STATE_MODE) {
|
||||
assert(state->mode_type == WLR_OUTPUT_STATE_MODE_FIXED);
|
||||
wlr_mode = state->mode;
|
||||
} else {
|
||||
wlr_mode = conn->output.current_mode;
|
||||
}
|
||||
}
|
||||
|
||||
conn->desired_enabled = wlr_mode != NULL;
|
||||
|
|
Loading…
Reference in New Issue