1
0
Fork 0
forked from wry/wry

autocommit 2022-02-06 16:33:54 CET

This commit is contained in:
Julian Orth 2022-02-06 16:33:54 +01:00
parent c92346324b
commit dc2cb71012
104 changed files with 2563 additions and 4617 deletions

48
wire/wl_touch.txt Normal file
View file

@ -0,0 +1,48 @@
# requests
msg release = 0 {
}
# events
msg down = 0 {
serial: u32,
time: u32,
surface: id(wl_surface),
id: i32,
x: fixed,
y: fixed,
}
msg up = 1 {
serial: u32,
time: u32,
id: i32,
}
msg motion = 2 {
time: u32,
id: u32,
x: fixed,
y: fixed,
}
msg frame = 3 {
}
msg cancel = 4 {
}
msg shape = 5 {
id: i32,
major: fixed,
minor: fixed,
}
msg orientation = 6 {
id: i32,
orientation: fixed,
}