lv_font_glyph_dsc_t struct
Describes the properties of a glyph.
Fields
Pointer to a font where the glyph was actually found after handling fallbacks.
The glyph needs this space. Draw the next glyph after this width.
Width of the glyph's bounding box.
Height of the glyph's bounding box.
x offset of the bounding box.
y offset of the bounding box.
Font format of the glyph see lv_font_glyph_format_t.
Glyph is missing. But placeholder will still be displayed.
union {
uint32_t index;
const void * src;
}
The index of the glyph in the font file. Used by the font cache.
The cache entry of the glyph draw data. Used by the font cache.