aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index d0d034b3..098540fb 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -39,6 +39,12 @@ struct sway_output {
39 } events; 39 } events;
40}; 40};
41 41
42struct sway_container *output_create(struct sway_output *sway_output);
43
44void output_destroy(struct sway_container *output);
45
46void output_begin_destroy(struct sway_container *output);
47
42typedef void (*sway_surface_iterator_func_t)(struct sway_output *output, 48typedef void (*sway_surface_iterator_func_t)(struct sway_output *output,
43 struct wlr_surface *surface, struct wlr_box *box, float rotation, 49 struct wlr_surface *surface, struct wlr_box *box, float rotation,
44 void *user_data); 50 void *user_data);