Implement wayland backend input events

This commit is contained in:
nyorain 2017-06-22 16:53:48 +02:00
parent 0b8e6cccc8
commit c1520077b6
3 changed files with 87 additions and 29 deletions

View file

@ -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;