Struct dacite::core::PipelineDepthStencilStateCreateInfo [] [src]

pub struct PipelineDepthStencilStateCreateInfo {
    pub flags: PipelineDepthStencilStateCreateFlags,
    pub depth_test_enable: bool,
    pub depth_write_enable: bool,
    pub depth_compare_op: CompareOp,
    pub depth_bounds_test_enable: bool,
    pub stencil_test_enable: bool,
    pub front: StencilOpState,
    pub back: StencilOpState,
    pub min_depth_bounds: f32,
    pub max_depth_bounds: f32,
    pub chain: Option<PipelineDepthStencilStateCreateInfoChain>,
}

Fields

Trait Implementations

impl Debug for PipelineDepthStencilStateCreateInfo
[src]

Formats the value using the given formatter.

impl Clone for PipelineDepthStencilStateCreateInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PipelineDepthStencilStateCreateInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.