Struct vulkano::swapchain::SupportedSurfaceTransforms[][src]

pub struct SupportedSurfaceTransforms {
    pub identity: bool,
    pub rotate90: bool,
    pub rotate180: bool,
    pub rotate270: bool,
    pub horizontal_mirror: bool,
    pub horizontal_mirror_rotate90: bool,
    pub horizontal_mirror_rotate180: bool,
    pub horizontal_mirror_rotate270: bool,
    pub inherit: bool,
}

List of supported composite alpha modes.

Fields

Methods

impl SupportedSurfaceTransforms
[src]

Builds a SupportedSurfaceTransforms with all fields set to false.

Returns true if the given SurfaceTransform is in this list.

Returns an iterator to the list of supported composite alpha.

Trait Implementations

impl Copy for SupportedSurfaceTransforms
[src]

impl Clone for SupportedSurfaceTransforms
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SupportedSurfaceTransforms
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SupportedSurfaceTransforms
[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 SupportedSurfaceTransforms
[src]

Auto Trait Implementations