diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-08-19 16:07:11 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-19 16:07:11 +1000 |
commit | 7f22fab3895ff090d5e26936f4e964e081090164 (patch) | |
tree | c5d96041e3270b1d1d50f8a42d91652d615c9938 /include/sway/desktop.h | |
parent | 37e37627cae0a23d9f763cc56378b528f2ff3885 (diff) | |
parent | d0a24465d75cc7197ee253e1de9fa961071cd034 (diff) |
Merge branch 'master' into commands
Diffstat (limited to 'include/sway/desktop.h')
-rw-r--r-- | include/sway/desktop.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/desktop.h b/include/sway/desktop.h index 348fb187..c969a76b 100644 --- a/include/sway/desktop.h +++ b/include/sway/desktop.h @@ -1,8 +1,13 @@ #include <wlr/types/wlr_surface.h> struct sway_container; +struct sway_view; void desktop_damage_surface(struct wlr_surface *surface, double lx, double ly, bool whole); void desktop_damage_whole_container(struct sway_container *con); + +void desktop_damage_box(struct wlr_box *box); + +void desktop_damage_view(struct sway_view *view); |