#[repr(C)]pub struct PhysicalDeviceDepthStencilResolveProperties {
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: u32,
pub independent_resolve: u32,
}Expand description
VkPhysicalDeviceDepthStencilResolveProperties
Provided by VK_GRAPHICS_VERSION_1_2.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
supported_depth_resolve_modes: ResolveModeFlags§supported_stencil_resolve_modes: ResolveModeFlags§independent_resolve_none: u32§independent_resolve: u32Implementations§
Source§impl PhysicalDeviceDepthStencilResolveProperties
impl PhysicalDeviceDepthStencilResolveProperties
Sourcepub fn builder<'a>() -> PhysicalDeviceDepthStencilResolvePropertiesBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceDepthStencilResolvePropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceDepthStencilResolveProperties
impl Clone for PhysicalDeviceDepthStencilResolveProperties
Source§fn clone(&self) -> PhysicalDeviceDepthStencilResolveProperties
fn clone(&self) -> PhysicalDeviceDepthStencilResolveProperties
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 PhysicalDeviceDepthStencilResolveProperties
impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceDepthStencilResolveProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceDepthStencilResolveProperties
impl RefUnwindSafe for PhysicalDeviceDepthStencilResolveProperties
impl !Send for PhysicalDeviceDepthStencilResolveProperties
impl !Sync for PhysicalDeviceDepthStencilResolveProperties
impl Unpin for PhysicalDeviceDepthStencilResolveProperties
impl UnsafeUnpin for PhysicalDeviceDepthStencilResolveProperties
impl UnwindSafe for PhysicalDeviceDepthStencilResolveProperties
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