pub trait TextureSink {
// Required method
fn write_texture(&mut self, texture: &Texture<'_>) -> Result<(), KtxError>;
}
Expand description
A sink of Texture
s, e.g. something they can be written to.
pub trait TextureSink {
// Required method
fn write_texture(&mut self, texture: &Texture<'_>) -> Result<(), KtxError>;
}
A sink of Texture
s, e.g. something they can be written to.