pub struct Glyph {
pub len: u32,
pub height: u32,
pub width: u32,
pub data: &'static [u8],
}
Expand description
The glyph type for PCScreenFont.
Fields§
§len: u32
The size of this glyph.
height: u32
The height of this glyph.
width: u32
The width of this glyph.
data: &'static [u8]
The raw glyph data.