Enum nannou::ui::backend::glium::glium::framebuffer::DefaultFramebufferAttachment[][src]

pub enum DefaultFramebufferAttachment {
    BackLeft,
    BackRight,
    FrontLeft,
    FrontRight,
}

One of the color attachments on the default framebuffer.

Variants

The backbuffer for the left eye. Equivalent to the backbuffer if stereoscopy is disabled.

The backbuffer for the right eye. May not be present.

The frontbuffer for the left eye. Equivalent to the frontbuffer if stereoscopy is disabled. May not be accessible.

The frontbuffer for the right eye. May not be present or accessible.

Trait Implementations

impl Clone for DefaultFramebufferAttachment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DefaultFramebufferAttachment
[src]

Formats the value using the given formatter. Read more

impl Copy for DefaultFramebufferAttachment
[src]

Auto Trait Implementations