mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 11:30:59 +00:00
36304a7d36
And also don't suggest in the template caps that GL might be supported. For clarification, the wayland feature is also renamed to waylandegl and using wayland gives a deprecation warning. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1837>
7 lines
193 B
Rust
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()
|
|
}
|