|
@@ -4,6 +4,8 @@
|
|
|
|
|
|
void free_glyph_atlas_init(Free_Glyph_Atlas *atlas, FT_Face face)
|
|
|
{
|
|
|
+ // TODO: Introduction of SDF font slowed down the start up time
|
|
|
+ // We need to investigate what's up with that
|
|
|
FT_Int32 load_flags = FT_LOAD_RENDER | FT_LOAD_TARGET_(FT_RENDER_MODE_SDF);
|
|
|
for (int i = 32; i < 128; ++i) {
|
|
|
if (FT_Load_Char(face, i, load_flags)) {
|