#[repr(C)]pub struct PipelineDepthStencilStateCreateInfo {
pub s_type: StructureType,
pub next: *const c_void,
pub flags: PipelineDepthStencilStateCreateFlags,
pub depth_test_enable: Bool32,
pub depth_write_enable: Bool32,
pub depth_compare_op: CompareOp,
pub depth_bounds_test_enable: Bool32,
pub stencil_test_enable: Bool32,
pub front: StencilOpState,
pub back: StencilOpState,
pub min_depth_bounds: f32,
pub max_depth_bounds: f32,
}Expand description
Fields
s_type: StructureTypenext: *const c_voidflags: PipelineDepthStencilStateCreateFlagsdepth_test_enable: Bool32depth_write_enable: Bool32depth_compare_op: CompareOpdepth_bounds_test_enable: Bool32stencil_test_enable: Bool32front: StencilOpStateback: StencilOpStatemin_depth_bounds: f32max_depth_bounds: f32Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl !Send for PipelineDepthStencilStateCreateInfo
impl !Sync for PipelineDepthStencilStateCreateInfo
impl Unpin for PipelineDepthStencilStateCreateInfo
Blanket Implementations
Mutably borrows from an owned value. Read more