diff options
author | Simon Ser <contact@emersion.fr> | 2023-12-05 16:09:16 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2023-12-27 13:41:20 +0100 |
commit | ab924064f230cce2aea2e45bd113adea9d37f286 (patch) | |
tree | 5aeec3dc8dd51987f939c5da6ec9aa7d406c73dd /include/wlr | |
parent | d68ba9d6c2bca6c5e9f7db1b6043d6e742b77bbd (diff) |
scene: drop wlr_scene_set_presentation()
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_scene.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index 2811e95b..76ac32ec 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -99,12 +99,10 @@ struct wlr_scene { struct wl_list outputs; // wlr_scene_output.link // May be NULL - struct wlr_presentation *presentation; struct wlr_linux_dmabuf_v1 *linux_dmabuf_v1; // private state - struct wl_listener presentation_destroy; struct wl_listener linux_dmabuf_v1_destroy; enum wlr_scene_debug_damage_option debug_damage_option; @@ -304,15 +302,6 @@ struct wlr_scene_node *wlr_scene_node_at(struct wlr_scene_node *node, struct wlr_scene *wlr_scene_create(void); /** - * Handle presentation feedback for all surfaces in the scene, assuming that - * scene outputs and the scene rendering functions are used. - * - * Asserts that a struct wlr_presentation hasn't already been set for the scene. - */ -void wlr_scene_set_presentation(struct wlr_scene *scene, - struct wlr_presentation *presentation); - -/** * Handles linux_dmabuf_v1 feedback for all surfaces in the scene. * * Asserts that a struct wlr_linux_dmabuf_v1 hasn't already been set for the scene. |