Trait libktx_rs::texture::TextureSource[][src]

pub trait TextureSource<'a> {
    fn create_texture(self) -> Result<Texture<'a>, KtxError>;
}
Expand description

A source of Textures.

Required methods

Attempts to create a new texture by consuming self.

Implementors