#[repr(C)]pub struct PipelineDepthStencilStateCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: PipelineDepthStencilStateCreateFlags,
pub depth_test_enable: u32,
pub depth_write_enable: u32,
pub depth_compare_op: CompareOp,
pub depth_bounds_test_enable: u32,
pub stencil_test_enable: u32,
pub front: StencilOpState,
pub back: StencilOpState,
pub min_depth_bounds: f32,
pub max_depth_bounds: f32,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidflags: PipelineDepthStencilStateCreateFlagsdepth_test_enable: u32depth_write_enable: u32depth_compare_op: CompareOpdepth_bounds_test_enable: u32stencil_test_enable: u32front: StencilOpStateback: StencilOpStatemin_depth_bounds: f32max_depth_bounds: f32Implementations
sourceimpl PipelineDepthStencilStateCreateInfo
impl PipelineDepthStencilStateCreateInfo
pub fn builder<'a>() -> PipelineDepthStencilStateCreateInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for PipelineDepthStencilStateCreateInfo
impl Clone for PipelineDepthStencilStateCreateInfo
sourcefn clone(&self) -> PipelineDepthStencilStateCreateInfo
fn clone(&self) -> PipelineDepthStencilStateCreateInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Default for PipelineDepthStencilStateCreateInfo
impl Default for PipelineDepthStencilStateCreateInfo
sourcefn default() -> PipelineDepthStencilStateCreateInfo
fn default() -> PipelineDepthStencilStateCreateInfo
Returns the “default value” for a type. Read more
impl Copy for PipelineDepthStencilStateCreateInfo
Auto Trait Implementations
impl RefUnwindSafe for PipelineDepthStencilStateCreateInfo
impl !Send for PipelineDepthStencilStateCreateInfo
impl !Sync for PipelineDepthStencilStateCreateInfo
impl Unpin for PipelineDepthStencilStateCreateInfo
impl UnwindSafe for PipelineDepthStencilStateCreateInfo
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