Enum vulkano::swapchain::CompositeAlpha [] [src]

#[repr(u32)]
pub enum CompositeAlpha { Opaque, PreMultiplied, PostMultiplied, Inherit, }

How the alpha values of the pixels of the window are treated.

Variants

The alpha channel of the image is ignored. All the pixels are considered as if they have a value of 1.0.

The alpha channel of the image is respected. The color channels are expected to have already been multiplied by the alpha value.

The alpha channel of the image is respected. The color channels will be multiplied by the alpha value by the compositor before being added to what is behind.

Let the operating system or driver implementation choose.

Trait Implementations

impl Copy for CompositeAlpha
[src]

impl Clone for CompositeAlpha
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CompositeAlpha
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for CompositeAlpha
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for CompositeAlpha
[src]