diff options
author | David96 <david@hameipe.de> | 2020-05-02 15:09:36 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-02 18:25:47 +0200 |
commit | e3343cf7d1e0d8c429046887b4fc90be35b9cfba (patch) | |
tree | 621588112455260aeb9615cf54d69bf0a8817210 /include/wlr | |
parent | 11e94c406bb75c9a8990ce99489798411deb110c (diff) |
Add wlr_surface_accepts_touch
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_seat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index 1b912875..949cd419 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -678,4 +678,9 @@ struct wlr_seat_client *wlr_seat_client_from_resource( struct wlr_seat_client *wlr_seat_client_from_pointer_resource( struct wl_resource *resource); +/** + * Check whether a surface has bound to touch events. + */ +bool wlr_surface_accepts_touch(struct wlr_seat *wlr_seat, struct wlr_surface *surface); + #endif |