aboutsummaryrefslogtreecommitdiff
path: root/include/backend
diff options
context:
space:
mode:
Diffstat (limited to 'include/backend')
-rw-r--r--include/backend/wayland.h22
-rw-r--r--include/backend/x11.h8
2 files changed, 16 insertions, 14 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h
index d1af954c..38c7ee32 100644
--- a/include/backend/wayland.h
+++ b/include/backend/wayland.h
@@ -32,10 +32,11 @@ struct wlr_wl_backend {
struct wl_shm *shm;
struct wl_seat *seat;
struct wl_pointer *pointer;
+ struct wlr_wl_pointer *current_pointer;
char *seat_name;
};
-struct wlr_wl_backend_output {
+struct wlr_wl_output {
struct wlr_output wlr_output;
struct wlr_wl_backend *backend;
@@ -47,7 +48,7 @@ struct wlr_wl_backend_output {
struct {
struct wl_shm_pool *pool;
- void *buffer; // actually a (client-side) struct wl_buffer*
+ void *buffer; // actually a (client-side) struct wl_buffer *
uint32_t buf_size;
uint8_t *data;
struct wl_surface *surface;
@@ -69,17 +70,20 @@ struct wlr_wl_input_device {
struct wlr_wl_pointer {
struct wlr_pointer wlr_pointer;
+
+ struct wlr_wl_input_device *input_device;
+ struct wl_pointer *wl_pointer;
enum wlr_axis_source axis_source;
- struct wlr_wl_backend_output *current_output;
- struct wl_listener output_destroy_listener;
+ struct wlr_wl_output *output;
+
+ struct wl_listener output_destroy;
};
void poll_wl_registry(struct wlr_wl_backend *backend);
-void update_wl_output_cursor(struct wlr_wl_backend_output *output);
-struct wlr_wl_backend_output *get_wl_output_for_surface(
- struct wlr_wl_backend *backend, struct wl_surface *surface);
-void get_wl_output_layout_box(struct wlr_wl_backend *backend,
- struct wlr_box *box);
+void update_wl_output_cursor(struct wlr_wl_output *output);
+struct wlr_wl_pointer *pointer_get_wl(struct wlr_pointer *wlr_pointer);
+void create_wl_pointer(struct wl_pointer *wl_pointer,
+ struct wlr_wl_output *output);
extern const struct wl_seat_listener seat_listener;
diff --git a/include/backend/x11.h b/include/backend/x11.h
index 1d56fbe8..f5557343 100644
--- a/include/backend/x11.h
+++ b/include/backend/x11.h
@@ -24,6 +24,9 @@ struct wlr_x11_output {
xcb_window_t win;
EGLSurface surf;
+ struct wlr_pointer pointer;
+ struct wlr_input_device pointer_dev;
+
struct wl_event_source *frame_timer;
int frame_delay;
};
@@ -43,9 +46,6 @@ struct wlr_x11_backend {
struct wlr_keyboard keyboard;
struct wlr_input_device keyboard_dev;
- struct wlr_pointer pointer;
- struct wlr_input_device pointer_dev;
-
struct wlr_egl egl;
struct wlr_renderer *renderer;
struct wl_event_source *event_source;
@@ -74,8 +74,6 @@ struct wlr_x11_backend {
struct wlr_x11_output *get_x11_output_from_window_id(struct wlr_x11_backend *x11,
xcb_window_t window);
-void get_x11_output_layout_box(struct wlr_x11_backend *backend,
- struct wlr_box *box);
extern const struct wlr_keyboard_impl keyboard_impl;
extern const struct wlr_pointer_impl pointer_impl;