diff options
author | Drew DeVault <[email protected]> | 2018-08-18 19:26:36 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-08-18 19:26:36 -0400 |
commit | d0a24465d75cc7197ee253e1de9fa961071cd034 (patch) | |
tree | 916f9f40b9f587d3cd24a8d7b2185b5c7808cfa4 /include/sway/desktop.h | |
parent | 373f0254a8d28511897e19ada1487b9115fc2019 (diff) | |
parent | ce78f6770e9c950d5335bedfd123979428561ae1 (diff) |
Merge pull request #2466 from RyanDwyer/geometry
Fix geometry
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); |