mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-25 00:22:25 +00:00
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.
This commit is contained in:
parent
fdb24d19ca
commit
ef5e2cc5e3
@ -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) {
|
||||
|
@ -789,6 +789,10 @@ bool wlr_output_commit_state(struct wlr_output *output,
|
||||
|
||||
output->commit_seq++;
|
||||
|
||||
if (pending.committed & WLR_OUTPUT_STATE_ENABLED) {
|
||||
wlr_output_update_enabled(output, pending.enabled);
|
||||
}
|
||||
|
||||
bool scale_updated = pending.committed & WLR_OUTPUT_STATE_SCALE;
|
||||
if (scale_updated) {
|
||||
output->scale = pending.scale;
|
||||
|
Loading…
Reference in New Issue
Block a user