diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/wayland.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 8138101c..df817598 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -39,16 +39,17 @@ struct wlr_output_state { }; struct wlr_input_device_state { - enum wlr_input_device_type type; + struct wlr_backend_state* backend; void *resource; }; struct wlr_pointer_state { - double surface_x; - double surface_y; + struct wlr_output *current_output; }; void wlr_wl_registry_poll(struct wlr_backend_state *backend); +struct wlr_output *wlr_wl_output_for_surface(struct wlr_backend_state *backend, + struct wl_surface *surface); extern const struct wl_seat_listener seat_listener; |