diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-05 22:53:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 22:53:21 -0400 |
commit | f63d9417cd4d25121fa1fd309acad14a7562a55c (patch) | |
tree | c46a070652793db69ec5d6c5258d0e6cf86c1231 /include/sway/output.h | |
parent | 268c68b41707a664e5059699c720f000f20e2276 (diff) | |
parent | 641807d920854fdecc1307bd809c198db1a7dff1 (diff) | |
download | sway-f63d9417cd4d25121fa1fd309acad14a7562a55c.tar.xz |
Merge pull request #1743 from emersion/subsurface-damage-tracking
Damage tracking for view children
Diffstat (limited to 'include/sway/output.h')
-rw-r--r-- | include/sway/output.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h index 98d0f83f..4bffa2b7 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -34,9 +34,15 @@ 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_container(struct sway_output *output, + struct sway_container *con); + struct sway_container *output_by_name(const char *name); #endif |