Enum vulkano::pipeline::blend::AttachmentsBlend [] [src]

pub enum AttachmentsBlend {
    Collective(AttachmentBlend),
    Individual(Vec<AttachmentBlend>),
}

Describes how the blending system should behave.

Variants

All the framebuffer attachments will use the same blending.

Each attachment will behave differently. Note that this requires enabling the independent_blend feature.

Trait Implementations

impl Debug for AttachmentsBlend
[src]

Formats the value using the given formatter.

impl Clone for AttachmentsBlend
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AttachmentsBlend
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AttachmentsBlend
[src]