Lines Matching refs:fFace
61 fFace = NULL; in GnomeFontInstance()
64 error = FT_New_Face(engine, fontPathName, 0, &fFace); in GnomeFontInstance()
76 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92); in GnomeFontInstance()
78 fCairoFace = cairo_ft_font_face_create_for_ft_face(fFace, 0); in GnomeFontInstance()
80 fUnitsPerEM = fFace->units_per_EM; in GnomeFontInstance()
82 fAscent = (le_int32) (yUnitsToPoints(fFace->ascender) * fDeviceScaleY); in GnomeFontInstance()
83 fDescent = (le_int32) -(yUnitsToPoints(fFace->descender) * fDeviceScaleY); in GnomeFontInstance()
84 fLeading = (le_int32) (yUnitsToPoints(fFace->height) * fDeviceScaleY) - fAscent - fDescent; in GnomeFontInstance()
100 if (fFace != NULL) { in ~GnomeFontInstance()
101 FT_Done_Face(fFace); in ~GnomeFontInstance()
133 FT_Load_Sfnt_Table(fFace, tableTag, 0, NULL, &len); in readFontTable()
137 FT_Load_Sfnt_Table(fFace, tableTag, 0, result, &len); in readFontTable()
154 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT); in getGlyphAdvance()
160 advance.fX = fFace->glyph->metrics.horiAdvance >> 6; in getGlyphAdvance()
168 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT); in getGlyphPoint()
174 if (pointNumber >= fFace->glyph->outline.n_points) { in getGlyphPoint()
178 point.fX = fFace->glyph->outline.points[pointNumber].x >> 6; in getGlyphPoint()
179 point.fY = fFace->glyph->outline.points[pointNumber].y >> 6; in getGlyphPoint()