diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-01 22:02:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-01 22:02:12 -0400 |
commit | 9564c73c0ddca9d7b45f0476fcaee8bd878d8345 (patch) | |
tree | 4405c7ab30e25c5234a61280a66d406921c52253 /include/sway/output.h | |
parent | 4cc0855f21a2704314aa7b8973ceae7a8b463a1a (diff) | |
parent | 7a59508da467a3b793e355e28ae67ce04633761c (diff) |
Merge pull request #2391 from RyanDwyer/fix-popups-v2
Fix popups (v2)
Diffstat (limited to 'include/sway/output.h')
-rw-r--r-- | include/sway/output.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h index 6283db68..80dcd37b 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -67,10 +67,18 @@ struct sway_container *output_get_active_workspace(struct sway_output *output); void output_render(struct sway_output *output, struct timespec *when, pixman_region32_t *damage); +void output_surface_for_each_surface(struct sway_output *output, + struct wlr_surface *surface, double ox, double oy, + sway_surface_iterator_func_t iterator, void *user_data); + void output_view_for_each_surface(struct sway_output *output, struct sway_view *view, sway_surface_iterator_func_t iterator, void *user_data); +void output_view_for_each_popup(struct sway_output *output, + struct sway_view *view, sway_surface_iterator_func_t iterator, + void *user_data); + void output_layer_for_each_surface(struct sway_output *output, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); |