Lines Matching refs:fFace
55 fFace = NULL; in GnomeFontInstance()
58 error = FT_New_Face(engine, fontPathName, 0, &fFace); in GnomeFontInstance()
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92); in GnomeFontInstance()
72 fCairoFace = cairo_ft_font_face_create_for_ft_face(fFace, 0); in GnomeFontInstance()
74 fUnitsPerEM = fFace->units_per_EM; in GnomeFontInstance()
76 fAscent = (le_int32) (yUnitsToPoints(fFace->ascender) * fDeviceScaleY); in GnomeFontInstance()
77 fDescent = (le_int32) -(yUnitsToPoints(fFace->descender) * fDeviceScaleY); in GnomeFontInstance()
78 fLeading = (le_int32) (yUnitsToPoints(fFace->height) * fDeviceScaleY) - fAscent - fDescent; in GnomeFontInstance()
94 if (fFace != NULL) { in ~GnomeFontInstance()
95 FT_Done_Face(fFace); in ~GnomeFontInstance()
127 FT_Load_Sfnt_Table(fFace, tableTag, 0, NULL, &len); in readFontTable()
131 FT_Load_Sfnt_Table(fFace, tableTag, 0, result, &len); in readFontTable()
148 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT); in getGlyphAdvance()
154 advance.fX = fFace->glyph->metrics.horiAdvance >> 6; in getGlyphAdvance()
162 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT); in getGlyphPoint()
168 if (pointNumber >= fFace->glyph->outline.n_points) { in getGlyphPoint()
172 point.fX = fFace->glyph->outline.points[pointNumber].x >> 6; in getGlyphPoint()
173 point.fY = fFace->glyph->outline.points[pointNumber].y >> 6; in getGlyphPoint()