Merge pull request #1031 from martinetd/multibind-seat

seat: allow clients to bind to seat multiple times
This commit is contained in:
emersion 2018-06-04 16:44:22 +01:00 committed by GitHub
commit 78966417f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 53 additions and 29 deletions

View file

@ -13,11 +13,11 @@
* managed by wlr_seat; some may be NULL.
*/
struct wlr_seat_client {
struct wl_resource *wl_resource;
struct wl_client *client;
struct wlr_seat *seat;
// lists of wl_resource
struct wl_list wl_resources;
struct wl_list pointers;
struct wl_list keyboards;
struct wl_list touches;