From f2dbcc33582b734f2fc95dac3b12320a19fa7b6e Mon Sep 17 00:00:00 2001 From: Alexander Orzechowski Date: Sun, 20 Mar 2022 20:56:13 -0400 Subject: [PATCH] wlr_scene: Make presentation object public --- include/wlr/types/wlr_scene.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index e1818b37..f390c278 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -76,10 +76,11 @@ struct wlr_scene { struct wl_list outputs; // wlr_scene_output.link - // private state - // May be NULL struct wlr_presentation *presentation; + + // private state + struct wl_listener presentation_destroy; };