1
0
Fork 0
forked from wry/wry

wayland: implement wl_touch

Co-authored-by: Julian Orth <ju.orth@gmail.com>
This commit is contained in:
Amine Hassane 2024-04-21 14:48:26 +01:00 committed by Julian Orth
parent 905e2dd7ba
commit 681c1ad033
35 changed files with 1071 additions and 52 deletions

View file

@ -239,3 +239,31 @@ event tablet_pad_ring_frame {
input_device: u32,
ring: u32,
}
event touch_down {
seat: u32,
time_usec: pod(u64),
id: i32,
x: fixed,
y: fixed,
}
event touch_up {
seat: u32,
time_usec: pod(u64),
id: i32,
}
event touch_motion {
seat: u32,
time_usec: pod(u64),
id: i32,
x: fixed,
y: fixed,
}
event touch_cancel {
seat: u32,
time_usec: pod(u64),
id: i32,
}