pub trait ImageSize {
    // Required method
    fn get_size(&self) -> (u32, u32);

    // Provided methods
    fn get_width(&self) -> u32 { ... }
    fn get_height(&self) -> u32 { ... }
}
Expand description

Implemented by all images to be used with generic algorithms.

Required Methods§

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

Get the image size.

Provided Methods§

fn get_width(&self) -> u32

Gets the image width.

fn get_height(&self) -> u32

Gets the image height.

Implementors§

source§

impl<R> ImageSize for Texture<R>where R: Resources,