furnace/src/gui/fonts.h
tildearrow 379d90ae4d 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
2022-01-19 16:58:01 -05:00

27 lines
1.2 KiB
C

#ifndef _FONTS_H
#define _FONTS_H
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