Removed relative pointers from wlr_seat

This commit is contained in:
Alex Maese 2018-12-13 23:41:21 -06:00
parent f4cf3c0886
commit 09bdbf24f4
6 changed files with 40 additions and 33 deletions

View file

@ -25,8 +25,9 @@
*/
struct wlr_relative_pointer_manager_v1 {
struct wl_list resources;
struct wl_global *global;
struct wl_list resources;
struct wl_list relative_pointers;
struct {
struct wl_signal destroy;
@ -52,7 +53,9 @@ struct wlr_relative_pointer_manager_v1 {
struct wlr_relative_pointer_v1 {
struct wl_resource *resource;
struct wlr_seat *seat;
struct wl_resource *pointer;
struct wl_list link; // wlr_relative_pointer_manager_v1::relative_pointers
struct {
struct wl_signal destroy;

View file

@ -27,7 +27,6 @@ struct wlr_seat_client {
// lists of wl_resource
struct wl_list resources;
struct wl_list pointers;
struct wl_list relative_pointers_v1;
struct wl_list keyboards;
struct wl_list touches;
struct wl_list data_devices;