Enum mallumo_gls::framebuffer::DrawTextureAttachOption [] [src]

pub enum DrawTextureAttachOption<'a> {
    AttachTexture(&'a mut Texture),
    AttachTextureLayer {
        texture: &'a mut Texture,
        level: u32,
        layer: u32,
    },
    None,
    Keep,
}

Variants

Fields of AttachTextureLayer

Trait Implementations

impl<'a> Debug for DrawTextureAttachOption<'a>
[src]

Formats the value using the given formatter.

impl<'a> Default for DrawTextureAttachOption<'a>
[src]

Returns the "default value" for a type. Read more