Struct glium::texture::TextureAnyLayer [] [src]

pub struct TextureAnyLayer<'a> {
    // some fields omitted
}

Represents a specific layer of an array texture and 3D textures.

Methods

impl<'a> TextureAnyLayer<'a>
[src]

fn get_texture(&self) -> &'a TextureAny

Returns the texture.

fn get_samples(&self) -> Option<u32>

Returns the number of samples of the texture.

fn get_layer(&self) -> u32

Returns the layer of the texture.

fn main_level(&self) -> TextureAnyLayerMipmap<'a>

Returns a structure that represents the main mipmap level of this layer of the texture.

fn mipmap(&self, level: u32) -> Option<TextureAnyLayerMipmap<'a>>

Returns a structure that represents a specific mipmap of this layer of the texture.

Returns None if out of range.

Trait Implementations

impl<'a> Clone for TextureAnyLayer<'a>
[src]

fn clone(&self) -> TextureAnyLayer<'a>

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<'a> Copy for TextureAnyLayer<'a>
[src]