Lines Matching defs:hhea
10977 int loca,head,glyf,hhea,hmtx,kern; /* table locations as offset from start of .ttf */
11127 info->hhea = (int)nk_tt__find_table(data, (nk_uint)fontstart, "hhea"); /* required */
11130 if (!cmap || !info->loca || !info->head || !info->glyf || !info->hhea || !info->hmtx)
11543 nk_ushort numOfLongHorMetrics = nk_ttUSHORT(info->data+info->hhea + 34);
11560 if (ascent ) *ascent = nk_ttSHORT(info->data+info->hhea + 4);
11561 if (descent) *descent = nk_ttSHORT(info->data+info->hhea + 6);
11562 if (lineGap) *lineGap = nk_ttSHORT(info->data+info->hhea + 8);
11567 int fheight = nk_ttSHORT(info->data + info->hhea + 4) - nk_ttSHORT(info->data + info->hhea + 6);