Struct ash::vk::RenderingAttachmentInfoBuilder
source · #[repr(transparent)]pub struct RenderingAttachmentInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> RenderingAttachmentInfoBuilder<'a>
impl<'a> RenderingAttachmentInfoBuilder<'a>
pub fn image_view(self, image_view: ImageView) -> Self
pub fn image_layout(self, image_layout: ImageLayout) -> Self
pub fn resolve_mode(self, resolve_mode: ResolveModeFlags) -> Self
pub fn resolve_image_view(self, resolve_image_view: ImageView) -> Self
pub fn resolve_image_layout(self, resolve_image_layout: ImageLayout) -> Self
pub fn load_op(self, load_op: AttachmentLoadOp) -> Self
pub fn store_op(self, store_op: AttachmentStoreOp) -> Self
pub fn clear_value(self, clear_value: ClearValue) -> Self
sourcepub fn build(self) -> RenderingAttachmentInfo
pub fn build(self) -> RenderingAttachmentInfo
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.