Lines Matching refs:font
54 const lv_font_t * font = g_dsc->resolved_font; in lv_font_glyph_release_draw_data() local
56 if(font != NULL && font->release_glyph) { in lv_font_glyph_release_draw_data()
57 font->release_glyph(font, g_dsc); in lv_font_glyph_release_draw_data()
120 uint16_t lv_font_get_glyph_width(const lv_font_t * font, uint32_t letter, uint32_t letter_next) in lv_font_get_glyph_width() argument
122 LV_ASSERT_NULL(font); in lv_font_get_glyph_width()
128 lv_font_get_glyph_dsc(font, &g, letter, letter_next); in lv_font_get_glyph_width()
132 void lv_font_set_kerning(lv_font_t * font, lv_font_kerning_t kerning) in lv_font_set_kerning() argument
134 LV_ASSERT_NULL(font); in lv_font_set_kerning()
135 font->kerning = kerning; in lv_font_set_kerning()
138 int32_t lv_font_get_line_height(const lv_font_t * font) in lv_font_get_line_height() argument
140 return font->line_height; in lv_font_get_line_height()