Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/video/
H A Dstb_truetype.h642 int loca,head,glyf,hhea,hmtx,kern; // table locations as offset from start of .ttf member
1034 info->hhea = stbtt__find_table(data, fontstart, "hhea"); // required in stbtt_InitFont()
1037 if (!cmap || !info->loca || !info->head || !info->glyf || !info->hhea || !info->hmtx) in stbtt_InitFont()
1473 stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->data+info->hhea + 34); in stbtt_GetGlyphHMetrics()
1527 if (ascent ) *ascent = ttSHORT(info->data+info->hhea + 4); in stbtt_GetFontVMetrics()
1528 if (descent) *descent = ttSHORT(info->data+info->hhea + 6); in stbtt_GetFontVMetrics()
1529 if (lineGap) *lineGap = ttSHORT(info->data+info->hhea + 8); in stbtt_GetFontVMetrics()
1542 int fheight = ttSHORT(info->data + info->hhea + 4) - ttSHORT(info->data + info->hhea + 6); in stbtt_ScaleForPixelHeight()