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

Glium textures that have two dimensions.

Required Methods

The width and height of the texture.

Implementors