backend/headless: take wl_event_loop instead of wl_display

This commit is contained in:
Simon Ser 2023-11-23 13:42:11 +01:00 committed by Kirill Primak
parent 0867dd4e6b
commit 682dbf36e5
5 changed files with 14 additions and 15 deletions

View file

@ -8,9 +8,9 @@
struct wlr_headless_backend {
struct wlr_backend backend;
struct wl_display *display;
struct wl_event_loop *event_loop;
struct wl_list outputs;
struct wl_listener display_destroy;
struct wl_listener event_loop_destroy;
bool started;
};