[][src]Trait conrod_glium::TextureDimensions

pub trait TextureDimensions {
    fn dimensions(&self) -> (u32, u32);
}

Glium textures that have two dimensions.

Required methods

fn dimensions(&self) -> (u32, u32)

The width and height of the texture.

Loading content...

Implementors

impl<T> TextureDimensions for T where
    T: Deref<Target = TextureAny>, 
[src]

Loading content...