mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-07 13:29:49 -05:00
Removed relative pointers from wlr_seat
This commit is contained in:
parent
f4cf3c0886
commit
09bdbf24f4
6 changed files with 40 additions and 33 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue