pub type SubpassDescriptionDepthStencilResolveKHR<'a> = SubpassDescriptionDepthStencilResolve<'a>;
Aliased Type§
struct SubpassDescriptionDepthStencilResolveKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub depth_resolve_mode: ResolveModeFlags,
pub stencil_resolve_mode: ResolveModeFlags,
pub p_depth_stencil_resolve_attachment: *const AttachmentReference2<'a>,
pub _marker: PhantomData<&'a ()>,
}
Fields§
§s_type: StructureType
§p_next: *const c_void
§depth_resolve_mode: ResolveModeFlags
§stencil_resolve_mode: ResolveModeFlags
§p_depth_stencil_resolve_attachment: *const AttachmentReference2<'a>
§_marker: PhantomData<&'a ()>
Implementations
Source§impl<'a> SubpassDescriptionDepthStencilResolve<'a>
impl<'a> SubpassDescriptionDepthStencilResolve<'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<'a>, ) -> Self
Trait Implementations
Source§impl<'a> Clone for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> Clone for SubpassDescriptionDepthStencilResolve<'a>
Source§fn clone(&self) -> SubpassDescriptionDepthStencilResolve<'a>
fn clone(&self) -> SubpassDescriptionDepthStencilResolve<'a>
Returns a copy 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 more