diff options
author | Simon Ser <contact@emersion.fr> | 2023-08-12 08:37:08 +0200 |
---|---|---|
committer | Isaac Freund <mail@isaacfreund.com> | 2023-11-23 11:39:25 +0000 |
commit | d61ec694b352c0f21c06958c5ef0417f3e424e3c (patch) | |
tree | ac9c486568c87c79a076ec2abdc69e8c6f4b4893 /backend/headless | |
parent | d23d8ed3ba4d56d3dc33a4ccc77c16b68f716f2d (diff) |
output: take wl_event_loop in wlr_output_init()
We don't need the whole wl_display here anymore. The wl_event_loop
is enough.
Diffstat (limited to 'backend/headless')
-rw-r--r-- | backend/headless/output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 406959b4..b3ac279e 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -119,7 +119,8 @@ struct wlr_output *wlr_headless_add_output(struct wlr_backend *wlr_backend, wlr_output_state_init(&state); wlr_output_state_set_custom_mode(&state, width, height, 0); - wlr_output_init(wlr_output, &backend->backend, &output_impl, backend->display, &state); + wlr_output_init(wlr_output, &backend->backend, &output_impl, + wl_display_get_event_loop(backend->display), &state); wlr_output_state_finish(&state); output_update_refresh(output, 0); |