diff options
author | emersion <contact@emersion.fr> | 2018-04-05 18:31:19 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-04-05 18:31:19 -0400 |
commit | 076bedb85eface4a6c41a0e99059c89186bdb275 (patch) | |
tree | 9390c5c41be12daa0e5443416d7868a8f59ea569 /include/sway/output.h | |
parent | 1c91d0c10ffbed14cafaba79276a14f55172b7eb (diff) |
Add container_damage_whole
Diffstat (limited to 'include/sway/output.h')
-rw-r--r-- | include/sway/output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/output.h b/include/sway/output.h index 9964a484..8945dde4 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -37,8 +37,8 @@ void output_damage_whole(struct sway_output *output); void output_damage_whole_view(struct sway_output *output, struct sway_view *view); -void output_damage_whole_surface(struct sway_output *output, - struct wlr_surface *surface, double ox, double oy); +void output_damage_whole_rect(struct sway_output *output, double ox, double oy, + int width, int height); struct sway_container *output_by_name(const char *name); |