aboutsummaryrefslogtreecommitdiff
path: root/backend/x11
diff options
context:
space:
mode:
authorMarkus Ongyerth <ongy@ongy.net>2018-01-23 17:40:12 +0100
committerMarkus Ongyerth <ongy@ongy.net>2018-01-23 17:40:12 +0100
commit3cf7225cec637c90f4a676aa02dee9ad06dadee9 (patch)
tree2cc642f5bb00a71f75f377abdeb66cd8a72774db /backend/x11
parent03440bbd83b5d68404db8ebc2df310ec0f8c9b32 (diff)
decouples outputenable state and wl_output global
This decouples wlr_output_enable and the wl_global. The previously internal functions wlr_output_(destroy/create)_global are exposed and used automatically in the wlr_output_layout to create/tear down the global. The compositor can handle them itself if it wants to, but I think this is the right moment to create/destroy the wl_output when the wlr_output_layout is used.
Diffstat (limited to 'backend/x11')
-rw-r--r--backend/x11/backend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/x11/backend.c b/backend/x11/backend.c
index e1622d06..2ee23b4f 100644
--- a/backend/x11/backend.c
+++ b/backend/x11/backend.c
@@ -226,7 +226,7 @@ static bool wlr_x11_backend_start(struct wlr_backend *backend) {
xcb_map_window(x11->xcb_conn, output->win);
xcb_flush(x11->xcb_conn);
- wlr_output_update_enabled(&output->wlr_output, true);
+ output->wlr_output.enabled = true;
wl_signal_emit(&x11->backend.events.output_add, output);
wl_signal_emit(&x11->backend.events.input_add, &x11->keyboard_dev);