aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/backend/x11.h2
-rw-r--r--include/wlr/types/wlr_cursor.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h
index 33c9a427..2fce409e 100644
--- a/include/backend/x11.h
+++ b/include/backend/x11.h
@@ -79,6 +79,8 @@ const struct wlr_input_device_impl input_device_impl;
bool x11_handle_input_event(struct wlr_x11_backend *x11,
xcb_generic_event_t *event);
+void x11_update_pointer_position(struct wlr_x11_output *output,
+ xcb_timestamp_t time);
void x11_output_handle_configure_notify(struct wlr_x11_output *output,
xcb_configure_notify_event_t *event);
diff --git a/include/wlr/types/wlr_cursor.h b/include/wlr/types/wlr_cursor.h
index 0883f3ca..b764e6d2 100644
--- a/include/wlr/types/wlr_cursor.h
+++ b/include/wlr/types/wlr_cursor.h
@@ -54,6 +54,8 @@ struct wlr_cursor {
struct wl_signal tablet_tool_tip;
struct wl_signal tablet_tool_button;
} events;
+
+ void *data;
};
struct wlr_cursor *wlr_cursor_create();