Struct lava::VkPipelineRasterizationStateCreateInfo[][src]

pub struct VkPipelineRasterizationStateCreateInfo {
    pub flags: VkPipelineRasterizationStateCreateFlags,
    pub depth_clamp_enable: bool,
    pub rasterizer_discard_enable: bool,
    pub polygon_mode: VkPolygonMode,
    pub cull_mode: VkCullModeFlags,
    pub front_face: VkFrontFace,
    pub depth_bias_enable: bool,
    pub depth_bias_constant_factor: f32,
    pub depth_bias_clamp: f32,
    pub depth_bias_slope_factor: f32,
    pub line_width: f32,
}

Fields

Trait Implementations

impl Debug for VkPipelineRasterizationStateCreateInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for VkPipelineRasterizationStateCreateInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkPipelineRasterizationStateCreateInfo
[src]

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

Auto Trait Implementations