Struct ash::vk::CopyImageToBufferInfo2Builder
source · #[repr(transparent)]pub struct CopyImageToBufferInfo2Builder<'a> { /* private fields */ }
Implementations§
source§impl<'a> CopyImageToBufferInfo2Builder<'a>
impl<'a> CopyImageToBufferInfo2Builder<'a>
pub fn src_image(self, src_image: Image) -> Self
pub fn src_image_layout(self, src_image_layout: ImageLayout) -> Self
pub fn dst_buffer(self, dst_buffer: Buffer) -> Self
pub fn regions(self, regions: &'a [BufferImageCopy2]) -> Self
sourcepub fn build(self) -> CopyImageToBufferInfo2
pub fn build(self) -> CopyImageToBufferInfo2
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.