autocommit 2022-02-06 03:46:03 CET
This commit is contained in:
parent
59ce74681a
commit
c92346324b
60 changed files with 1292 additions and 1958 deletions
60
wire/wl_drm.txt
Normal file
60
wire/wl_drm.txt
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# requests
|
||||
|
||||
msg authenticate = 0 {
|
||||
id: u32,
|
||||
}
|
||||
|
||||
msg create_buffer = 1 {
|
||||
id: id(wl_buffer),
|
||||
name: u32,
|
||||
width: i32,
|
||||
height: i32,
|
||||
stride: u32,
|
||||
format: u32,
|
||||
}
|
||||
|
||||
msg create_planar_buffer = 2 {
|
||||
id: id(wl_buffer),
|
||||
name: u32,
|
||||
width: i32,
|
||||
height: i32,
|
||||
format: u32,
|
||||
offset0: i32,
|
||||
stride0: i32,
|
||||
offset1: i32,
|
||||
stride1: i32,
|
||||
offset2: i32,
|
||||
stride2: i32,
|
||||
}
|
||||
|
||||
msg create_prime_buffer = 3 {
|
||||
id: id(wl_buffer),
|
||||
name: fd,
|
||||
width : i32,
|
||||
height : i32,
|
||||
format : u32,
|
||||
offset0 : i32,
|
||||
stride0 : i32,
|
||||
offset1 : i32,
|
||||
stride1 : i32,
|
||||
offset2 : i32,
|
||||
stride2 : i32,
|
||||
}
|
||||
|
||||
# events
|
||||
|
||||
msg device = 0 {
|
||||
name: bstr,
|
||||
}
|
||||
|
||||
msg format = 1 {
|
||||
format: u32,
|
||||
}
|
||||
|
||||
msg authenticated = 2 {
|
||||
|
||||
}
|
||||
|
||||
msg capabilities = 3 {
|
||||
value: u32,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue