Searched refs:g2 (Results 1 – 3 of 3) sorted by relevance
/lvgl-3.7.0/src/extra/libs/tiny_ttf/ |
D | lv_tiny_ttf.c | 109 int g2 = 0; in ttf_get_glyph_dsc_cb() local 111 g2 = stbtt_FindGlyphIndex(&dsc->info, (int)unicode_letter_next); in ttf_get_glyph_dsc_cb() 115 int k = stbtt_GetGlyphKernAdvance(&dsc->info, g1, g2); in ttf_get_glyph_dsc_cb()
|
D | stb_truetype_htcw.h | 1806 int g1, g2; local 1815 g2 = info->glyf + ttUSHORT(info->data, info->loca + glyph_index * 2 + 2) * 2; 1819 g2 = info->glyf + ttULONG(info->data, info->loca + glyph_index * 4 + 4); 1822 return g1 == g2 ? -1 : g1; // if length is 0, return -1 2861 STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo * info, int g1, int g2) argument 2866 xAdvance += stbtt__GetGlyphGPOSInfoAdvance(info, g1, g2); 2868 xAdvance += stbtt__GetGlyphKernInfoAdvance(info, g1, g2);
|
/lvgl-3.7.0/src/core/ |
D | lv_group.c | 159 lv_group_t * g2 = lv_obj_get_group(obj2); in lv_group_swap_obj() local 160 if(g1 != g2) return; in lv_group_swap_obj()
|