Struct lava::VkPipelineColorBlendAttachmentState[][src]

pub struct VkPipelineColorBlendAttachmentState {
    pub blend_enable: bool,
    pub src_color_blend_factor: VkBlendFactor,
    pub dst_color_blend_factor: VkBlendFactor,
    pub color_blend_op: VkBlendOp,
    pub src_alpha_blend_factor: VkBlendFactor,
    pub dst_alpha_blend_factor: VkBlendFactor,
    pub alpha_blend_op: VkBlendOp,
    pub color_write_mask: VkColorComponentFlags,
}

Fields

Trait Implementations

impl Debug for VkPipelineColorBlendAttachmentState
[src]

Formats the value using the given formatter. Read more

impl Clone for VkPipelineColorBlendAttachmentState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkPipelineColorBlendAttachmentState
[src]

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

Auto Trait Implementations