aboutsummaryrefslogtreecommitdiff
path: root/examples/scene-graph.c
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-11-03 18:25:05 +0100
committerAlexander Orzechowski <alex@ozal.ski>2022-11-15 21:16:25 +0000
commit41b7acbab78597e2eb0724e415ed94b910d113c1 (patch)
tree42b73c81efad383d169002a875870a7828225f93 /examples/scene-graph.c
parent265439600e2491a460253bdb59168f139cb08aea (diff)
backend: return wlr_session in wlr_backend_autocreate() call
Up until now, wlr_backend_autocreate() created the wlr_session and then stuffed it into struct wlr_multi_backend so that compositors can grab it later. This is an abuse of wlr_multi_backend and the wlr_backend API: wlr_backend_get_session() and wlr_multi_backend.session only exist to accomodate the needs of wlr_backend_autocreate(). What's more, the DRM and libinput backends don't implement wlr_backend_impl.get_session. Instead, return the struct wlr_session to the compositor in the wlr_backend_autocreate() call. wlr_backend_get_session() will be removed in the next commit.
Diffstat (limited to 'examples/scene-graph.c')
-rw-r--r--examples/scene-graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/scene-graph.c b/examples/scene-graph.c
index ba5d2d75..5821c906 100644
--- a/examples/scene-graph.c
+++ b/examples/scene-graph.c
@@ -157,7 +157,7 @@ int main(int argc, char *argv[]) {
struct server server = {0};
server.surface_offset = 0;
server.display = wl_display_create();
- server.backend = wlr_backend_autocreate(server.display);
+ server.backend = wlr_backend_autocreate(server.display, NULL);
server.scene = wlr_scene_create();
server.renderer = wlr_renderer_autocreate(server.backend);