Searched refs:glyph_index (Results 1 – 1 of 1) sorted by relevance
/openbmc/u-boot/drivers/video/ |
H A D | stb_truetype.h | 706 STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidt… 708 STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int… 736 STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index); 740 STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **verti… 1185 static int stbtt__GetGlyfOffset(const stbtt_fontinfo *info, int glyph_index) in stbtt__GetGlyfOffset() argument 1189 if (glyph_index >= info->numGlyphs) return -1; // glyph index out of range in stbtt__GetGlyfOffset() 1193 g1 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2) * 2; in stbtt__GetGlyfOffset() 1194 g2 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2 + 2) * 2; in stbtt__GetGlyfOffset() 1196 g1 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4); in stbtt__GetGlyfOffset() 1197 g2 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4 + 4); in stbtt__GetGlyfOffset() [all …]
|