Home
last modified time | relevance | path

Searched refs:descent (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.7.0/src/extra/libs/tiny_ttf/
Dlv_tiny_ttf.c76 int descent; member
264 stbtt_GetFontVMetrics(&dsc->info, &dsc->ascent, &dsc->descent, &line_gap); in lv_tiny_ttf_set_size()
265 font->line_height = (lv_coord_t)(dsc->scale * (dsc->ascent - dsc->descent + line_gap)); in lv_tiny_ttf_set_size()
266 font->base_line = (lv_coord_t)(dsc->scale * (line_gap - dsc->descent)); in lv_tiny_ttf_set_size()
Dstb_truetype_htcw.h799 STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo * info, int * ascent, int * descent, int …
2886 STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo * info, int * ascent, int * descent, int … argument
2889 if(descent) *descent = ttSHORT(info->data, info->hhea + 6);
4706 float * descent, float * lineGap);
4709 float * descent, float * lineGap);
4714 float * descent, float * lineGap) argument
4717 float * descent, float * lineGap)
4727 *descent = (float)i_descent * scale;
/lvgl-3.7.0/src/font/
Dlv_font_loader.c31 int16_t descent; member
503 font->base_line = -font_header.descent; in lvgl_load_font()
504 font->line_height = font_header.ascent - font_header.descent; in lvgl_load_font()