#[repr(transparent)]pub struct SubpassDescriptionDepthStencilResolveBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SubpassDescriptionDepthStencilResolveBuilder<'a>
impl<'a> SubpassDescriptionDepthStencilResolveBuilder<'a>
pub fn depth_resolve_mode(self, depth_resolve_mode: ResolveModeFlags) -> Self
pub fn stencil_resolve_mode(self, stencil_resolve_mode: ResolveModeFlags) -> Self
pub fn depth_stencil_resolve_attachment( self, depth_stencil_resolve_attachment: &'a AttachmentReference2 ) -> Self
sourcepub fn build(self) -> SubpassDescriptionDepthStencilResolve
pub fn build(self) -> SubpassDescriptionDepthStencilResolve
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.