Skip to main content

GlyphKeyStorage

Type Alias GlyphKeyStorage 

Source
pub type GlyphKeyStorage = Storage<GlyphKey>;

Aliased Type§

pub struct GlyphKeyStorage {
    data: Vec<GlyphKey>,
    open_count: u32,
}

Fields§

§data: Vec<GlyphKey>§open_count: u32

Debug-only count of currently open ranges. Incremented by open_range, decremented by close_range. clear/recycle assert this is zero so a forgotten close_range is caught at frame reset rather than silently producing wrong ranges later.