#[repr(C)]pub struct D3D12_DEPTH_STENCIL_DESC1 {
pub DepthEnable: BOOL,
pub DepthWriteMask: D3D12_DEPTH_WRITE_MASK,
pub DepthFunc: D3D12_COMPARISON_FUNC,
pub StencilEnable: BOOL,
pub StencilReadMask: u8,
pub StencilWriteMask: u8,
pub FrontFace: D3D12_DEPTH_STENCILOP_DESC,
pub BackFace: D3D12_DEPTH_STENCILOP_DESC,
pub DepthBoundsTestEnable: BOOL,
}
Expand description
Required features: "Win32_Graphics_Direct3D12"
, "Win32_Foundation"
Fields
DepthEnable: BOOL
DepthWriteMask: D3D12_DEPTH_WRITE_MASK
DepthFunc: D3D12_COMPARISON_FUNC
StencilEnable: BOOL
StencilReadMask: u8
StencilWriteMask: u8
FrontFace: D3D12_DEPTH_STENCILOP_DESC
BackFace: D3D12_DEPTH_STENCILOP_DESC
DepthBoundsTestEnable: BOOL
Trait Implementations
impl Clone for D3D12_DEPTH_STENCIL_DESC1
impl Clone for D3D12_DEPTH_STENCIL_DESC1
impl Copy for D3D12_DEPTH_STENCIL_DESC1
Auto Trait Implementations
impl RefUnwindSafe for D3D12_DEPTH_STENCIL_DESC1
impl Send for D3D12_DEPTH_STENCIL_DESC1
impl Sync for D3D12_DEPTH_STENCIL_DESC1
impl Unpin for D3D12_DEPTH_STENCIL_DESC1
impl UnwindSafe for D3D12_DEPTH_STENCIL_DESC1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more