add more fonts
partially related to an issue when displaying non-Latin characters however a true fix isn't coming yet as I haven't figured out a way to load glyphs during run-time as needed
This commit is contained in:
parent
f32f079ef8
commit
379d90ae4d
18 changed files with 132272 additions and 19 deletions
|
|
@ -1,9 +1,26 @@
|
|||
#ifndef _FONTS_H
|
||||
#define _FONTS_H
|
||||
extern const unsigned int defFont_main_compressed_size;
|
||||
extern const unsigned int defFont_main_compressed_data[];
|
||||
extern const unsigned int defFont_pat_compressed_size;
|
||||
extern const unsigned int defFont_pat_compressed_data[];
|
||||
extern const unsigned int font_exo_compressed_size;
|
||||
extern const unsigned int font_exo_compressed_data[];
|
||||
extern const unsigned int font_liberationSans_compressed_size;
|
||||
extern const unsigned int font_liberationSans_compressed_data[];
|
||||
extern const unsigned int font_mononoki_compressed_size;
|
||||
extern const unsigned int font_mononoki_compressed_data[];
|
||||
extern const unsigned int font_plexSans_compressed_size;
|
||||
extern const unsigned int font_plexSans_compressed_data[];
|
||||
extern const unsigned int font_plexMono_compressed_size;
|
||||
extern const unsigned int font_plexMono_compressed_data[];
|
||||
extern const unsigned int font_proggyClean_compressed_size;
|
||||
extern const unsigned int font_proggyClean_compressed_data[];
|
||||
extern const unsigned int font_ptMono_compressed_size;
|
||||
extern const unsigned int font_ptMono_compressed_data[];
|
||||
extern const unsigned int font_unifont_compressed_size;
|
||||
extern const unsigned int font_unifont_compressed_data[];
|
||||
extern const unsigned int iconFont_compressed_size;
|
||||
extern const unsigned int iconFont_compressed_data[];
|
||||
|
||||
extern const unsigned int* builtinFont[];
|
||||
extern const unsigned int builtinFontLen[];
|
||||
extern const unsigned int* builtinFontM[];
|
||||
extern const unsigned int builtinFontMLen[];
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue