aboutsummaryrefslogtreecommitdiff
path: root/backend/headless
diff options
context:
space:
mode:
authorMarkus Ongyerth <ongy@ongy.net>2018-01-24 10:23:48 +0100
committerMarkus Ongyerth <ongy@ongy.net>2018-01-24 10:23:48 +0100
commitf946c10cb171644e915deeaa40b5e8f8344a808c (patch)
tree11755cc97b42390f5c996a9b28bfa3b1c91c388e /backend/headless
parent3cf7225cec637c90f4a676aa02dee9ad06dadee9 (diff)
re-adds wlr_output_update_enabled
Re-add the wlr_output_update_enabled to make sure wlr_output::events.enable is called when the output enabled state changes.
Diffstat (limited to 'backend/headless')
-rw-r--r--backend/headless/backend.c2
-rw-r--r--backend/headless/output.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/backend/headless/backend.c b/backend/headless/backend.c
index 5438f1f4..cef8eec4 100644
--- a/backend/headless/backend.c
+++ b/backend/headless/backend.c
@@ -15,7 +15,7 @@ static bool backend_start(struct wlr_backend *wlr_backend) {
struct wlr_headless_output *output;
wl_list_for_each(output, &backend->outputs, link) {
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
- output->wlr_output.enabled = true;
+ wlr_output_update_enabled(&output->wlr_output, true);
wl_signal_emit(&backend->backend.events.output_add,
&output->wlr_output);
}
diff --git a/backend/headless/output.c b/backend/headless/output.c
index b89d4106..9fc92e88 100644
--- a/backend/headless/output.c
+++ b/backend/headless/output.c
@@ -139,7 +139,7 @@ struct wlr_output *wlr_headless_add_output(struct wlr_backend *wlr_backend,
if (backend->started) {
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
- wlr_output->enabled = true;
+ wlr_output_update_enabled(wlr_output, true);
wl_signal_emit(&backend->backend.events.output_add, wlr_output);
}