Struct ash::vk::PipelineColorBlendAttachmentStateBuilder [−][src]
#[repr(transparent)]pub struct PipelineColorBlendAttachmentStateBuilder<'a> { /* fields omitted */ }
Implementations
pub fn src_color_blend_factor(
self,
src_color_blend_factor: BlendFactor
) -> PipelineColorBlendAttachmentStateBuilder<'a>
pub fn dst_color_blend_factor(
self,
dst_color_blend_factor: BlendFactor
) -> PipelineColorBlendAttachmentStateBuilder<'a>
pub fn color_blend_op(
self,
color_blend_op: BlendOp
) -> PipelineColorBlendAttachmentStateBuilder<'a>
pub fn src_alpha_blend_factor(
self,
src_alpha_blend_factor: BlendFactor
) -> PipelineColorBlendAttachmentStateBuilder<'a>
pub fn dst_alpha_blend_factor(
self,
dst_alpha_blend_factor: BlendFactor
) -> PipelineColorBlendAttachmentStateBuilder<'a>
pub fn alpha_blend_op(
self,
alpha_blend_op: BlendOp
) -> PipelineColorBlendAttachmentStateBuilder<'a>
pub fn color_write_mask(
self,
color_write_mask: ColorComponentFlags
) -> PipelineColorBlendAttachmentStateBuilder<'a>
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Methods from Deref<Target = PipelineColorBlendAttachmentState>
Trait Implementations
The resulting type after dereferencing.