Trait DeviceWorkingTextureRef

Source
pub trait DeviceWorkingTextureRef<Image: Image> {
    type TextureT;

    // Required method
    fn get(self, store: &DeviceWorkingTextureStore<Image>) -> &Self::TextureT;
}
Expand description

DeviceWorkingTexture Reference

Required Associated Types§

Source

type TextureT

Type of the Texture that this reference referring to

Required Methods§

Source

fn get(self, store: &DeviceWorkingTextureStore<Image>) -> &Self::TextureT

Gets texture object from the store

Implementors§