use crate::{GLBaseMemoryAllocator, GLContext};
use glib::{prelude::*, translate::*};
glib::wrapper! {
#[doc(alias = "GstGLMemoryAllocator")]
pub struct GLMemoryAllocator(Object<ffi::GstGLMemoryAllocator, ffi::GstGLMemoryAllocatorClass>) @extends GLBaseMemoryAllocator, gst::Allocator, gst::Object;
match fn {
type_ => || ffi::gst_gl_memory_allocator_get_type(),
}
}
impl GLMemoryAllocator {
pub const NONE: Option<&'static GLMemoryAllocator> = None;
#[doc(alias = "gst_gl_memory_allocator_get_default")]
#[doc(alias = "get_default")]
#[allow(clippy::should_implement_trait)]
pub fn default(context: &impl IsA<GLContext>) -> GLMemoryAllocator {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::gst_gl_memory_allocator_get_default(
context.as_ref().to_glib_none().0,
))
}
}
}
unsafe impl Send for GLMemoryAllocator {}
unsafe impl Sync for GLMemoryAllocator {}