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

62
wire/wl_surface.txt Normal file
View file

@ -0,0 +1,62 @@
# requests
msg destroy = 0 {
}
msg attach = 1 {
buffer: id(wl_buffer),
x: i32,
y: i32,
}
msg damage = 2 {
x: i32,
y: i32,
width: i32,
height: i32,
}
msg frame = 3 {
callback: id(wl_callback),
}
msg set_opaque_region = 4 {
region: id(wl_region),
}
msg set_input_region = 5 {
region: id(wl_region),
}
msg commit = 6 {
}
msg set_buffer_transform = 7 {
transform: i32,
}
msg set_buffer_scale = 8 {
scale: i32,
}
msg damage_buffer = 9 {
x: i32,
y: i32,
width: i32,
height: i32,
}
msg offset = 10 {
x: i32,
y: i32,
}
# events
msg enter = 0 {
output: id(wl_output),
}
msg leave = 1 {
output: id(wl_output),
}