pub struct PCScreenFont {
pub version: u32,
pub flags: u32,
pub height: u32,
pub width: u32,
pub glyphs: &'static [Glyph],
pub unitable: &'static [&'static [u8]],
}
Expand description
A more useful form of RawPCScreenFont.
Fields§
§version: u32
The version. Should be 0.
flags: u32
Flags. 0 if there’s no unicode table.
height: u32
The height of each glyph.
width: u32
The width of each glyph.
glyphs: &'static [Glyph]
The glyphs.
unitable: &'static [&'static [u8]]
The unicode translation table.