Home
last modified time | relevance | path

Searched refs:unicode_letter (Results 1 – 7 of 7) sorted by relevance

/lvgl-latest/src/libs/freetype/
Dlv_freetype_glyph.c35 …type_get_glyph_dsc_cb(const lv_font_t * font, lv_font_glyph_dsc_t * g_dsc, uint32_t unicode_letter,
79 …type_get_glyph_dsc_cb(const lv_font_t * font, lv_font_glyph_dsc_t * g_dsc, uint32_t unicode_letter, in freetype_get_glyph_dsc_cb() argument
86 if(unicode_letter < 0x20) { in freetype_get_glyph_dsc_cb()
101 .unicode = unicode_letter, in freetype_get_glyph_dsc_cb()
109 LV_LOG_ERROR("glyph lookup failed for unicode = 0x%" LV_PRIx32, unicode_letter); in freetype_get_glyph_dsc_cb()
/lvgl-latest/src/libs/tiny_ttf/
Dlv_tiny_ttf.c88 …tf_get_glyph_dsc_cb(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t unicode_letter,
206 …tf_get_glyph_dsc_cb(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t unicode_letter, in ttf_get_glyph_dsc_cb() argument
209 if(unicode_letter < 0x20 || in ttf_get_glyph_dsc_cb()
210 unicode_letter == 0xf8ff || /*LV_SYMBOL_DUMMY*/ in ttf_get_glyph_dsc_cb()
211 unicode_letter == 0x200c) { /*ZERO WIDTH NON-JOINER*/ in ttf_get_glyph_dsc_cb()
225 .unicode = unicode_letter, in ttf_get_glyph_dsc_cb()
233 uint32_t g1 = stbtt_FindGlyphIndex(&dsc->info, (int)unicode_letter); in ttf_get_glyph_dsc_cb()
454 uint32_t unicode_letter = node->unicode; in tiny_ttf_glyph_cache_create_cb() local
456 int g1 = stbtt_FindGlyphIndex(&dsc->info, (int)unicode_letter); in tiny_ttf_glyph_cache_create_cb()
/lvgl-latest/src/font/
Dlv_font_fmt_txt.h210 …t_glyph_dsc_fmt_txt(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t unicode_letter,
Dlv_font_fmt_txt.c202 …t_glyph_dsc_fmt_txt(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t unicode_letter, in lv_font_get_glyph_dsc_fmt_txt() argument
206 bool is_tab = unicode_letter == '\t'; in lv_font_get_glyph_dsc_fmt_txt()
208 unicode_letter = ' '; in lv_font_get_glyph_dsc_fmt_txt()
211 uint32_t gid = get_glyph_dsc_id(font, unicode_letter); in lv_font_get_glyph_dsc_fmt_txt()
/lvgl-latest/src/draw/
Dlv_draw_label.h143 … const lv_point_t * point, uint32_t unicode_letter);
Dlv_draw_label.c129 const lv_point_t * point, uint32_t unicode_letter) in lv_draw_character() argument
137 if(lv_text_is_marker(unicode_letter)) return; in lv_draw_character()
142 lv_font_get_glyph_dsc(dsc->font, &g, unicode_letter, 0); in lv_draw_character()
152 letter_buf[0] = lv_text_unicode_to_encoded(unicode_letter); in lv_draw_character()
/lvgl-latest/docs/details/main-components/
Dfont.rst499 /* Get info about glyph of `unicode_letter` in `font` font.
503 …c_cb(const lv_font_t * font, lv_font_glyph_dsc_t * dsc_out, uint32_t unicode_letter, uint32_t unic…
521 /* Get the bitmap of `unicode_letter` from `font`. */
522 const uint8_t * my_get_glyph_bitmap_cb(const lv_font_t * font, uint32_t unicode_letter)