#[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: Bool32src_color_blend_factor: BlendFactordst_color_blend_factor: BlendFactorcolor_blend_op: BlendOpsrc_alpha_blend_factor: BlendFactordst_alpha_blend_factor: BlendFactoralpha_blend_op: BlendOpcolor_write_mask: ColorComponentFlagsTrait Implementations
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for PipelineColorBlendAttachmentState
impl Sync for PipelineColorBlendAttachmentState
impl Unpin for PipelineColorBlendAttachmentState
Blanket Implementations
Mutably borrows from an owned value. Read more