Struct ash::vk::PipelineColorBlendAttachmentState  
source · #[repr(C)]pub struct PipelineColorBlendAttachmentState {
    pub blend_enable: Bool32,
    pub src_color_blend_factor: BlendFactor,
    pub dst_color_blend_factor: BlendFactor,
    pub color_blend_op: BlendOp,
    pub src_alpha_blend_factor: BlendFactor,
    pub dst_alpha_blend_factor: BlendFactor,
    pub alpha_blend_op: BlendOp,
    pub color_write_mask: ColorComponentFlags,
}Expand description
Fields§
§blend_enable: Bool32§src_color_blend_factor: BlendFactor§dst_color_blend_factor: BlendFactor§color_blend_op: BlendOp§src_alpha_blend_factor: BlendFactor§dst_alpha_blend_factor: BlendFactor§alpha_blend_op: BlendOp§color_write_mask: ColorComponentFlagsImplementations§
source§impl PipelineColorBlendAttachmentState
 
impl PipelineColorBlendAttachmentState
pub fn builder<'a>() -> PipelineColorBlendAttachmentStateBuilder<'a>
Trait Implementations§
source§impl Clone for PipelineColorBlendAttachmentState
 
impl Clone for PipelineColorBlendAttachmentState
source§fn clone(&self) -> PipelineColorBlendAttachmentState
 
fn clone(&self) -> PipelineColorBlendAttachmentState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Default for PipelineColorBlendAttachmentState
 
impl Default for PipelineColorBlendAttachmentState
source§fn default() -> PipelineColorBlendAttachmentState
 
fn default() -> PipelineColorBlendAttachmentState
Returns the “default value” for a type. Read more