Struct graphics_tree::TextureInner [] [src]

pub struct TextureInner {
    pub id: Option<u64>,
    pub needs_update: bool,
    pub image: RgbaImage,
}

Stores the inner data to keep track of a texture.

Fields

Id used by TextureBuffer to look up texture.

Whether the texture needs to be updated.

The image data associated with a texture.