mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-25 06:59:42 -05:00
Support multiple resources per seat client for pointer, keyboard, touch
This commit is contained in:
parent
25acc37d67
commit
4f0443a344
3 changed files with 148 additions and 127 deletions
|
|
@ -16,9 +16,11 @@ struct wlr_seat_client {
|
|||
struct wl_client *client;
|
||||
struct wlr_seat *seat;
|
||||
|
||||
struct wl_resource *pointer;
|
||||
struct wl_resource *keyboard;
|
||||
struct wl_resource *touch;
|
||||
// lists of wl_resource
|
||||
struct wl_list pointers;
|
||||
struct wl_list keyboards;
|
||||
struct wl_list touches;
|
||||
|
||||
struct wl_resource *data_device;
|
||||
|
||||
struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue