1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#![cfg_attr(rustfmt, rustfmt_skip)]
pub mod presentation_time {
    
    
    
    wayland_protocol!(
        "presentation-time",
        [
            (wl_surface, wl_surface_interface),
            (wl_output, wl_output_interface)
        ],
        []
    );
}
pub mod xdg_shell {
    
    
    
    wayland_protocol!(
        "xdg-shell",
        [
            (wl_seat, wl_seat_interface),
            (wl_surface, wl_surface_interface),
            (wl_output, wl_output_interface)
        ],
        []
    );
}
pub mod viewporter {
    
    
    
    
    wayland_protocol!(
        "viewporter",
        [
            (wl_surface, wl_surface_interface)
        ],
        []
    );
}