Searched refs:descent (Results 1 – 3 of 3) sorted by relevance
/lvgl-latest/src/libs/tiny_ttf/ |
D | lv_tiny_ttf.c | 65 int descent; member 132 stbtt_GetFontVMetrics(&dsc->info, &dsc->ascent, &dsc->descent, &line_gap); in lv_tiny_ttf_set_size() 133 font->line_height = (int32_t)(dsc->scale * (dsc->ascent - dsc->descent + line_gap)); in lv_tiny_ttf_set_size() 134 font->base_line = (int32_t)(dsc->scale * (line_gap - dsc->descent)); in lv_tiny_ttf_set_size()
|
D | stb_truetype_htcw.h | 799 STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo * info, int * ascent, int * descent, int … 2926 STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo * info, int * ascent, int * descent, int … argument 2929 if(descent) *descent = ttSHORT(info->data, info->hhea + 6); 4746 float * descent, float * lineGap); 4749 float * descent, float * lineGap); 4754 float * descent, float * lineGap) argument 4757 float * descent, float * lineGap) 4767 *descent = (float)i_descent * scale;
|
/lvgl-latest/src/font/ |
D | lv_binfont_loader.c | 30 int16_t descent; member 479 font->base_line = -font_header.descent; in lvgl_load_font() 480 font->line_height = font_header.ascent - font_header.descent; in lvgl_load_font()
|