summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/output.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 8945dde4..4bffa2b7 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -34,11 +34,14 @@ struct sway_output {
34 34
35void output_damage_whole(struct sway_output *output); 35void output_damage_whole(struct sway_output *output);
36 36
37void output_damage_whole_surface(struct sway_output *output,
38 double ox, double oy, struct wlr_surface *surface);
39
37void output_damage_whole_view(struct sway_output *output, 40void output_damage_whole_view(struct sway_output *output,
38 struct sway_view *view); 41 struct sway_view *view);
39 42
40void output_damage_whole_rect(struct sway_output *output, double ox, double oy, 43void output_damage_whole_container(struct sway_output *output,
41 int width, int height); 44 struct sway_container *con);
42 45
43struct sway_container *output_by_name(const char *name); 46struct sway_container *output_by_name(const char *name);
44 47