gstreamer_gl/auto/
gl_memory_allocator.rs1use crate::{ffi, GLBaseMemoryAllocator, GLContext};
7use glib::{prelude::*, translate::*};
8
9glib::wrapper! {
10 #[doc(alias = "GstGLMemoryAllocator")]
11 pub struct GLMemoryAllocator(Object<ffi::GstGLMemoryAllocator, ffi::GstGLMemoryAllocatorClass>) @extends GLBaseMemoryAllocator, gst::Allocator, gst::Object;
12
13 match fn {
14 type_ => || ffi::gst_gl_memory_allocator_get_type(),
15 }
16}
17
18impl GLMemoryAllocator {
19 pub const NONE: Option<&'static GLMemoryAllocator> = None;
20
21 #[doc(alias = "gst_gl_memory_allocator_get_default")]
22 #[doc(alias = "get_default")]
23 #[allow(clippy::should_implement_trait)]
24 pub fn default(context: &impl IsA<GLContext>) -> GLMemoryAllocator {
25 skip_assert_initialized!();
26 unsafe {
27 from_glib_full(ffi::gst_gl_memory_allocator_get_default(
28 context.as_ref().to_glib_none().0,
29 ))
30 }
31 }
32}
33
34unsafe impl Send for GLMemoryAllocator {}
35unsafe impl Sync for GLMemoryAllocator {}