Home
last modified time | relevance | path

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

/lvgl-2.7.6/src/lv_font/
Dlv_font.c48 const uint8_t * lv_font_get_glyph_bitmap(const lv_font_t * font_p, uint32_t letter) in lv_font_get_glyph_bitmap() argument
50 return font_p->get_glyph_bitmap(font_p, letter); in lv_font_get_glyph_bitmap()
61 bool lv_font_get_glyph_dsc(const lv_font_t * font_p, lv_font_glyph_dsc_t * dsc_out, uint32_t letter, in lv_font_get_glyph_dsc() argument
64 return font_p->get_glyph_dsc(font_p, dsc_out, letter, letter_next); in lv_font_get_glyph_dsc()
Dlv_font.h96 const uint8_t * lv_font_get_glyph_bitmap(const lv_font_t * font_p, uint32_t letter);
106 bool lv_font_get_glyph_dsc(const lv_font_t * font_p, lv_font_glyph_dsc_t * dsc_out, uint32_t letter,
123 static inline lv_coord_t lv_font_get_line_height(const lv_font_t * font_p) in lv_font_get_line_height() argument
125 return font_p->line_height; in lv_font_get_line_height()
/lvgl-2.7.6/src/lv_draw/
Dlv_draw_label.c36 const lv_font_t * font_p,
401 const lv_font_t * font_p, in lv_draw_letter() argument
408 if(font_p == NULL) { in lv_draw_letter()
414 bool g_ret = lv_font_get_glyph_dsc(font_p, &g, letter, '\0'); in lv_draw_letter()
428 int32_t pos_y = pos_p->y + (font_p->line_height - font_p->base_line) - g.box_h - g.ofs_y; in lv_draw_letter()
439 const uint8_t * map_p = lv_font_get_glyph_bitmap(font_p, letter); in lv_draw_letter()
445 if(font_p->subpx) { in lv_draw_letter()