Skip to main content

PFN_vkCmdCopyImage

Type Alias PFN_vkCmdCopyImage 

Source
pub type PFN_vkCmdCopyImage = Option<unsafe extern "system" fn(command_buffer: CommandBuffer, src_image: Image, src_image_layout: ImageLayout, dst_image: Image, dst_image_layout: ImageLayout, region_count: u32, p_regions: *const ImageCopy)>;
Expand description

vkCmdCopyImage Provided by VK_BASE_VERSION_1_0.

§Thread Safety

  • commandBuffer must be externally synchronized

Aliased Type§

pub enum PFN_vkCmdCopyImage {
    None,
    Some(unsafe extern "system" fn(CommandBuffer, Image, ImageLayout, Image, ImageLayout, u32, *const ImageCopy)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(CommandBuffer, Image, ImageLayout, Image, ImageLayout, u32, *const ImageCopy))

Some value of type T.