diff options
author | Simon Ser <contact@emersion.fr> | 2023-11-23 13:42:11 +0100 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2024-01-25 15:05:36 +0000 |
commit | 682dbf36e53a36b09a2cc37ef6bdaf21fa8d35b5 (patch) | |
tree | e084ad677654a2f874907a646d21740b14545d1e /include/backend | |
parent | 0867dd4e6bf1c0ff8d947d563bdd333464a1c0a8 (diff) |
backend/headless: take wl_event_loop instead of wl_display
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/headless.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/headless.h b/include/backend/headless.h index 4c71fb60..21df86ea 100644 --- a/include/backend/headless.h +++ b/include/backend/headless.h @@ -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; }; |