Enum amethyst_renderer::TextureFormat[][src]

pub enum TextureFormat {
    Jpg,
    Png,
    Bmp,
}

Aggregate texture format

Variants

Jpeg

Png

Bmp

Trait Implementations

impl Debug for TextureFormat
[src]

Formats the value using the given formatter. Read more

impl Clone for TextureFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl SimpleFormat<Texture> for TextureFormat
[src]

NAME: &'static str = "TextureFormat"

A unique identifier for this format.

Options specific to the format, which are passed to import. E.g. for textures this would be stuff like mipmap levels and sampler info. Read more

Produces asset data from given bytes.

Auto Trait Implementations