backend: drop wl_display refs from docs

This commit is contained in:
Kirill Primak 2025-01-11 22:40:21 +03:00 committed by Simon Ser
parent 4a67628cb0
commit a231bf7f62

View file

@ -65,13 +65,12 @@ struct wlr_backend *wlr_backend_autocreate(struct wl_event_loop *loop,
struct wlr_session **session_ptr); struct wlr_session **session_ptr);
/** /**
* Start the backend. This may signal new_input or new_output immediately, but * Start the backend. This may signal new_input or new_output immediately, but
* may also wait until the display's event loop begins. Returns false on * may also wait until the event loop is started. Returns false on failure.
* failure.
*/ */
bool wlr_backend_start(struct wlr_backend *backend); bool wlr_backend_start(struct wlr_backend *backend);
/** /**
* Destroy the backend and clean up all of its resources. Normally called * Destroy the backend and clean up all of its resources. Normally called
* automatically when the struct wl_display is destroyed. * automatically when the event loop is destroyed.
*/ */
void wlr_backend_destroy(struct wlr_backend *backend); void wlr_backend_destroy(struct wlr_backend *backend);
/** /**