gstreamer_vulkan/auto/
vulkan_image_memory_allocator.rs1use crate::ffi;
7
8glib::wrapper! {
9 #[doc(alias = "GstVulkanImageMemoryAllocator")]
15 pub struct VulkanImageMemoryAllocator(Object<ffi::GstVulkanImageMemoryAllocator, ffi::GstVulkanImageMemoryAllocatorClass>) @extends gst::Allocator, gst::Object;
16
17 match fn {
18 type_ => || ffi::gst_vulkan_image_memory_allocator_get_type(),
19 }
20}
21
22impl VulkanImageMemoryAllocator {
23 pub const NONE: Option<&'static VulkanImageMemoryAllocator> = None;
24}
25
26unsafe impl Send for VulkanImageMemoryAllocator {}
27unsafe impl Sync for VulkanImageMemoryAllocator {}