lv_font_fmt_txt_cmap_t struct
Map codepoints to a `glyph_dsc`s Several formats are supported to optimize memory usage See https://github.com/lvgl/lv_font_conv/blob/master/doc/font_spec.md
Fields
First Unicode character for this range.
Number of Unicode characters related to this range. Last Unicode character = range_start + range_length - 1.
First glyph ID (array index of `glyph_dsc`) for this range.
if(type == LV_FONT_FMT_TXT_CMAP_FORMAT0_...) it's `uint8_t *` if(type == LV_FONT_FMT_TXT_CMAP_SPARSE_...) it's `uint16_t *`.
Length of `unicode_list` and/or `glyph_id_ofs_list`.
Type of this character map.