diff options
author | nyorain <nyorain@gmail.com> | 2017-06-22 16:53:48 +0200 |
---|---|---|
committer | nyorain <nyorain@gmail.com> | 2017-06-22 16:53:48 +0200 |
commit | c1520077b6dab32dee359bdfe03dddc5e391f9a5 (patch) | |
tree | 20954d18ca7f43216e4ca659c13f67acc88756c9 /include | |
parent | 0b8e6cccc8dccc1f8166da41a5f985158d303ac2 (diff) |
Implement wayland backend input events
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/wayland.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index bf65ec50..8138101c 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -43,6 +43,11 @@ struct wlr_input_device_state { void *resource; }; +struct wlr_pointer_state { + double surface_x; + double surface_y; +}; + void wlr_wl_registry_poll(struct wlr_backend_state *backend); extern const struct wl_seat_listener seat_listener; |