diff options
author | emersion <contact@emersion.fr> | 2018-04-05 18:38:50 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-04-05 18:38:50 -0400 |
commit | d65d001aa55c71f67a35c8ce78d3cb3f7f5fd65e (patch) | |
tree | 1c9f2045ac5750765c9517166b5c36ac43664971 /include/sway/output.h | |
parent | 6b9b03f09ffae8c8a9d7150d1ec68845c9e0ebf0 (diff) |
Fix desktop_damage_whole_surface
Diffstat (limited to 'include/sway/output.h')
-rw-r--r-- | include/sway/output.h | 7 |
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 { void output_damage_whole(struct sway_output *output); +void output_damage_whole_surface(struct sway_output *output, + double ox, double oy, struct wlr_surface *surface); + void output_damage_whole_view(struct sway_output *output, struct sway_view *view); -void output_damage_whole_rect(struct sway_output *output, double ox, double oy, - int width, int height); +void output_damage_whole_container(struct sway_output *output, + struct sway_container *con); struct sway_container *output_by_name(const char *name); |