Enum glium::framebuffer::DefaultFramebufferAttachment [] [src]

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

One of the color attachments on the default framebuffer.

Variants

BackLeft

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

BackRight

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

FrontLeft

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

FrontRight

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

Trait Implementations

impl Debug for DefaultFramebufferAttachment
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for DefaultFramebufferAttachment
[src]

fn clone(&self) -> DefaultFramebufferAttachment

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for DefaultFramebufferAttachment
[src]