gstreamer_gl/
caps_features.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use gst::CapsFeatures;
4use std::sync::LazyLock;
5
6pub static CAPS_FEATURES_MEMORY_GL_MEMORY: LazyLock<CapsFeatures> =
7    LazyLock::new(|| CapsFeatures::new([crate::CAPS_FEATURE_MEMORY_GL_MEMORY]));