Trait libktx_rs::texture::TextureSink[][src]

pub trait TextureSink {
    fn write_texture(&mut self, texture: &Texture<'_>) -> Result<(), KtxError>;
}
Expand description

A sink of Textures, e.g. something they can be written to.

Required methods

Attempts to write texture to self.

Implementors