gst-plugins-rs/video/gtk4/build.rs
Sebastian Dröge dfb871eb5d gtk4paintablesink: Deprecate wayland feature and add waylandegl feature
It's clearer that this is for GL support only.

Also remove the wayland feature dependency from the dmabuf one. While
dmabufs are only supported on wayland, it has no relation to the EGL
support.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1839>
2024-10-03 11:48:37 +03:00

7 lines
193 B
Rust

fn main() {
#[cfg(feature = "wayland")]
{
println!("cargo:warning=\"wayland\" feature is deprecated, use \"waylandegl\" instead");
}
gst_plugin_version_helper::info()
}