Struct ash::vk::BlitImageInfo2Builder
source · #[repr(transparent)]pub struct BlitImageInfo2Builder<'a> { /* private fields */ }
Implementations§
source§impl<'a> BlitImageInfo2Builder<'a>
impl<'a> BlitImageInfo2Builder<'a>
pub fn src_image(self, src_image: Image) -> Self
pub fn src_image_layout(self, src_image_layout: ImageLayout) -> Self
pub fn dst_image(self, dst_image: Image) -> Self
pub fn dst_image_layout(self, dst_image_layout: ImageLayout) -> Self
pub fn regions(self, regions: &'a [ImageBlit2]) -> Self
pub fn filter(self, filter: Filter) -> Self
sourcepub fn build(self) -> BlitImageInfo2
pub fn build(self) -> BlitImageInfo2
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.