aboutsummaryrefslogtreecommitdiff
path: root/include/backend/wayland.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/backend/wayland.h')
-rw-r--r--include/backend/wayland.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h
index bf65ec50..792bad37 100644
--- a/include/backend/wayland.h
+++ b/include/backend/wayland.h
@@ -39,11 +39,18 @@ 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 {
+ enum wlr_axis_source axis_source;
+ 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;