Lines Matching refs:fCG
187 if (!fCG || fSize.fWidth < glyph.width() || fSize.fHeight < glyph.height()) { in getCG()
201 fCG.reset(CGBitmapContextCreate(image, fSize.fWidth, fSize.fHeight, 8, in getCG()
206 CGContextSetAllowsFontSubpixelQuantization(fCG.get(), false); in getCG()
207 CGContextSetShouldSubpixelQuantizeFonts(fCG.get(), false); in getCG()
212 CGContextSetAllowsFontSubpixelPositioning(fCG.get(), true); in getCG()
213 CGContextSetShouldSubpixelPositionFonts(fCG.get(), true); in getCG()
215 CGContextSetTextDrawingMode(fCG.get(), kCGTextFill); in getCG()
218 CGContextSetGrayFillColor(fCG.get(), 0.0f, 1.0f); in getCG()
224 CGContextSetTextMatrix(fCG.get(), context.fTransform); in getCG()
228 CGContextSetShouldAntialias(fCG.get(), doAA); in getCG()
232 CGContextSetShouldSmoothFonts(fCG.get(), doLCD); in getCG()
261 CTFontDrawGlyphs(context.fCTFont.get(), &glyphID, &point, 1, fCG.get()); in getCG()