Home | History | Annotate | Download | only in ports

Lines Matching refs:gID

403 static bool getWidthAdvance(FT_Face face, int gId, int16_t* data) {
405 if (FT_Get_Advances(face, gId, 1, FT_LOAD_NO_SCALE, &advance)) {
603 for (int gID = 0; gID < face->num_glyphs; gID += 128) {
606 if (gID + advanceCount > face->num_glyphs) {
607 advanceCount = face->num_glyphs - gID;
609 FT_Get_Advances(face, gID, advanceCount, FT_LOAD_NO_SCALE, advances);
639 for (int gID = 0; gID < face->num_glyphs; gID++) {
641 FT_Get_Glyph_Name(face, gID, glyphName, 128);
642 info->fGlyphNames->get()[gID].set(glyphName);