diff options
author | Simon Ser <contact@emersion.fr> | 2023-11-23 14:17:39 +0100 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2024-01-25 15:05:36 +0000 |
commit | d1b39b58432c471c16e09103fd2c7850e3c41950 (patch) | |
tree | 1d825cbf9ba005a7061eb40e6ff55dfb70ac30cd /include | |
parent | f27808b8d98d5b9907a347cd9f01bb7bef3218b9 (diff) |
backend: take wl_event_loop instead of wl_display in wlr_backend_autocreate()
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/backend.h b/include/wlr/backend.h index 24d8c6b5..e7d230b9 100644 --- a/include/wlr/backend.h +++ b/include/wlr/backend.h @@ -41,7 +41,7 @@ struct wlr_backend { * The multi-backend will be destroyed if one of the primary underlying * backends is destroyed (e.g. if the primary DRM device is unplugged). */ -struct wlr_backend *wlr_backend_autocreate(struct wl_display *display, +struct wlr_backend *wlr_backend_autocreate(struct wl_event_loop *loop, struct wlr_session **session_ptr); /** * Start the backend. This may signal new_input or new_output immediately, but |