#[repr(C)]pub struct PhysicalDeviceDepthStencilResolveProperties<'a> {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub supported_depth_resolve_modes: ResolveModeFlags,
pub supported_stencil_resolve_modes: ResolveModeFlags,
pub independent_resolve_none: Bool32,
pub independent_resolve: Bool32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *mut c_void
§supported_depth_resolve_modes: ResolveModeFlags
§supported_stencil_resolve_modes: ResolveModeFlags
§independent_resolve_none: Bool32
§independent_resolve: Bool32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> PhysicalDeviceDepthStencilResolveProperties<'a>
pub fn supported_depth_resolve_modes( self, supported_depth_resolve_modes: ResolveModeFlags, ) -> Self
pub fn supported_stencil_resolve_modes( self, supported_stencil_resolve_modes: ResolveModeFlags, ) -> Self
pub fn independent_resolve_none(self, independent_resolve_none: bool) -> Self
pub fn independent_resolve(self, independent_resolve: bool) -> Self
Trait Implementations§
source§impl<'a> Clone for PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> Clone for PhysicalDeviceDepthStencilResolveProperties<'a>
source§fn clone(&self) -> PhysicalDeviceDepthStencilResolveProperties<'a>
fn clone(&self) -> PhysicalDeviceDepthStencilResolveProperties<'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 moresource§impl<'a> Debug for PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> Debug for PhysicalDeviceDepthStencilResolveProperties<'a>
source§impl<'a> TaggedStructure for PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> TaggedStructure for PhysicalDeviceDepthStencilResolveProperties<'a>
const STRUCTURE_TYPE: StructureType = StructureType::PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES
impl<'a> Copy for PhysicalDeviceDepthStencilResolveProperties<'a>
impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceDepthStencilResolveProperties<'_>
impl Send for PhysicalDeviceDepthStencilResolveProperties<'_>
impl Sync for PhysicalDeviceDepthStencilResolveProperties<'_>
Auto Trait Implementations§
impl<'a> Freeze for PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> RefUnwindSafe for PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> Unpin for PhysicalDeviceDepthStencilResolveProperties<'a>
impl<'a> UnwindSafe for PhysicalDeviceDepthStencilResolveProperties<'a>
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