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
#![cfg_attr(rustfmt, rustfmt_skip)]
pub mod presentation_time {
//! Presentation time protocol
//!
//! Allows precise feedback on presentation timing, for example for smooth video playback.
wayland_protocol!(
"presentation-time",
[(wl_surface, wl_surface_interface), (wl_output, wl_output_interface)],
[]
);
}
pub mod xdg_shell {
//! XDG Shell protocol
//!
//! Exposes the `xdg_wm_base` global, which deprecates and replaces `wl_shell`.
wayland_protocol!(
"xdg-shell",
[
(wl_seat, wl_seat_interface),
(wl_surface, wl_surface_interface),
(wl_output, wl_output_interface)
],
[]
);
}
pub mod viewporter {
//! Viewporter protocol
//!
//! Provides the capability of scaling and cropping surfaces, decorrelating the surface
//! dimensions from the size of the buffer.
wayland_protocol!("viewporter", [(wl_surface, wl_surface_interface)], []);
}