#[repr(C)]pub struct SubpassDescriptionDepthStencilResolve {
pub s_type: StructureType,
pub p_next: *const c_void,
pub depth_resolve_mode: ResolveModeFlagBits,
pub stencil_resolve_mode: ResolveModeFlagBits,
pub p_depth_stencil_resolve_attachment: *const AttachmentReference2,
}Expand description
VkSubpassDescriptionDepthStencilResolve
Provided by VK_GRAPHICS_VERSION_1_2.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE.
p_next: *const c_voidOptional, may be null.
depth_resolve_mode: ResolveModeFlagBits§stencil_resolve_mode: ResolveModeFlagBits§p_depth_stencil_resolve_attachment: *const AttachmentReference2Optional, may be null.
Implementations§
Source§impl SubpassDescriptionDepthStencilResolve
impl SubpassDescriptionDepthStencilResolve
Sourcepub fn builder<'a>() -> SubpassDescriptionDepthStencilResolveBuilder<'a>
pub fn builder<'a>() -> SubpassDescriptionDepthStencilResolveBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for SubpassDescriptionDepthStencilResolve
impl Clone for SubpassDescriptionDepthStencilResolve
Source§fn clone(&self) -> SubpassDescriptionDepthStencilResolve
fn clone(&self) -> SubpassDescriptionDepthStencilResolve
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SubpassDescriptionDepthStencilResolve
impl ExtendsSubpassDescription2 for SubpassDescriptionDepthStencilResolve
Auto Trait Implementations§
impl Freeze for SubpassDescriptionDepthStencilResolve
impl RefUnwindSafe for SubpassDescriptionDepthStencilResolve
impl !Send for SubpassDescriptionDepthStencilResolve
impl !Sync for SubpassDescriptionDepthStencilResolve
impl Unpin for SubpassDescriptionDepthStencilResolve
impl UnsafeUnpin for SubpassDescriptionDepthStencilResolve
impl UnwindSafe for SubpassDescriptionDepthStencilResolve
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more