diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-06 09:34:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-06 09:34:41 -0400 |
commit | d1c26059d2c901d5b53f6d5738c2e9708144bad3 (patch) | |
tree | 0d5db76aa24876dd8549236150a94e3946cc258b /include/backend/wayland.h | |
parent | bcbf78ddaf1fc219b477faf3b9e5e410c62c1d0d (diff) | |
parent | 641d08ce7eba1464c535feb04513374cde22ed17 (diff) |
Merge pull request #219 from versusvoid/cursor-bounds
Transform hotspot with cursor
Diffstat (limited to 'include/backend/wayland.h')
-rw-r--r-- | include/backend/wayland.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 752dab69..508a7f52 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -67,7 +67,8 @@ struct wlr_wl_pointer { }; void wlr_wl_registry_poll(struct wlr_wl_backend *backend); -void wlr_wl_output_update_cursor(struct wlr_wl_backend_output *output, uint32_t serial); +void wlr_wl_output_update_cursor(struct wlr_wl_backend_output *output, + uint32_t serial, int32_t hotspot_x, int32_t hotspot_y); struct wlr_wl_backend_output *wlr_wl_output_for_surface( struct wlr_wl_backend *backend, struct wl_surface *surface); |