• Home
  • Raw
  • Download

Lines Matching refs:fCTFont

934     SkUniqueCFRef<CTFontRef> fCTFont;  member in SkScalerContext_Mac
1003 fCTFont = ctfont_create_exact_copy(ctFont, textSize, nullptr); in SkScalerContext_Mac()
1004 fCGFont.reset(CTFontCopyGraphicsFont(fCTFont.get(), nullptr)); in SkScalerContext_Mac()
1114 CTFontDrawGlyphs(context.fCTFont.get(), &glyphID, &point, 1, fCG.get()); in getCG()
1138 CTFontGetGlyphsForCharacters(fCTFont.get(), theChar, cgGlyph, numUniChar); in generateCharToGlyph()
1156 CTFontGetAdvancesForGlyphs(fCTFont.get(), kCTFontOrientationHorizontal, in generateMetrics()
1174 CTFontGetBoundingRectsForGlyphs(fCTFont.get(), kCTFontOrientationHorizontal, in generateMetrics()
1184 SkUniqueCFRef<CGPathRef> path(CTFontCreatePathForGlyph(fCTFont.get(), cgGlyph,nullptr)); in generateMetrics()
1448 SkUniqueCFRef<CGPathRef> cgPath(CTFontCreatePathForGlyph(fCTFont.get(), cgGlyph, &xform)); in generatePath()
1471 CGRect theBounds = CTFontGetBoundingBox(fCTFont.get()); in generateFontMetrics()
1474 metrics->fAscent = CGToScalar(-CTFontGetAscent(fCTFont.get())); in generateFontMetrics()
1475 metrics->fDescent = CGToScalar( CTFontGetDescent(fCTFont.get())); in generateFontMetrics()
1477 metrics->fLeading = CGToScalar( CTFontGetLeading(fCTFont.get())); in generateFontMetrics()
1482 metrics->fXHeight = CGToScalar( CTFontGetXHeight(fCTFont.get())); in generateFontMetrics()
1483 metrics->fCapHeight = CGToScalar( CTFontGetCapHeight(fCTFont.get())); in generateFontMetrics()
1484 metrics->fUnderlineThickness = CGToScalar( CTFontGetUnderlineThickness(fCTFont.get())); in generateFontMetrics()
1485 metrics->fUnderlinePosition = -CGToScalar( CTFontGetUnderlinePosition(fCTFont.get())); in generateFontMetrics()
1505 CGFloat fontSize = CTFontGetSize(this->fCTFont.get()); in generateFontMetrics()
1506 unsigned upem = CTFontGetUnitsPerEm(this->fCTFont.get()); in generateFontMetrics()