Struct lava::VkPipelineDepthStencilStateCreateInfo[][src]

pub struct VkPipelineDepthStencilStateCreateInfo {
    pub flags: VkPipelineDepthStencilStateCreateFlags,
    pub depth_test_enable: bool,
    pub depth_write_enable: bool,
    pub depth_compare_op: VkCompareOp,
    pub depth_bounds_test_enable: bool,
    pub stencil_test_enable: bool,
    pub front: VkStencilOpState,
    pub back: VkStencilOpState,
    pub min_depth_bounds: f32,
    pub max_depth_bounds: f32,
}

Fields

Trait Implementations

impl Debug for VkPipelineDepthStencilStateCreateInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for VkPipelineDepthStencilStateCreateInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkPipelineDepthStencilStateCreateInfo
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations