seat: Port 0.16 device changes

This commit is contained in:
Alexander Orzechowski 2022-10-12 03:37:05 -04:00 committed by Jente Hidskes Ankarberg
parent a57e0067c1
commit 47f5daba20
2 changed files with 55 additions and 57 deletions

4
seat.h
View file

@ -60,7 +60,7 @@ struct cg_keyboard_group {
struct cg_pointer {
struct wl_list link; // seat::pointers
struct cg_seat *seat;
struct wlr_input_device *device;
struct wlr_pointer *pointer;
struct wl_listener destroy;
};
@ -68,7 +68,7 @@ struct cg_pointer {
struct cg_touch {
struct wl_list link; // seat::touch
struct cg_seat *seat;
struct wlr_input_device *device;
struct wlr_touch *touch;
struct wl_listener destroy;
};