[][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.

Implementors

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