Hi @kisvegabor , @embeddedt and ALL
Description
I am using freetype library via lv_freetype.
At the time of add font into label object, it takes a lots more time than using binary font.
Is there any way to reduce this processing time?
Create font:
static lv_ft_info_t s_font_12;
s_font_12.name = "f_12";
s_font_12.weight = 12;
s_font_12.style = FT_FONT_STYLE_NORMAL;
lv_ft_font_init(&s_font_12)
Create label object:
static lv_obj_t *label;
static lv_style_t s_style_label;
lv_style_set_text_font(&s_style_label, LV_STATE_DEFAULT, s_font_12.font);
lv_obj_add_style(label, LV_LABEL_PART_MAIN, &s_style_label);