Home | History | Annotate | Download | only in ports

Lines Matching refs:fCG

337     AutoCFRelease<CGContextRef> fCG;
347 Offscreen::Offscreen() : fRGBSpace(NULL), fCG(NULL) {
740 if (!fCG || fSize.fWidth < glyph.fWidth || fSize.fHeight < glyph.fHeight) {
750 fCG = CGBitmapContextCreate(image, fSize.fWidth, fSize.fHeight, 8,
755 CGContextSetAllowsFontSubpixelQuantization(fCG, false);
756 CGContextSetShouldSubpixelQuantizeFonts(fCG, false);
758 CGContextSetTextDrawingMode(fCG, kCGTextFill);
759 CGContextSetFont(fCG, context.fCGFont);
760 CGContextSetFontSize(fCG, 1);
761 CGContextSetTextMatrix(fCG, context.fTransform);
763 CGContextSetAllowsFontSubpixelPositioning(fCG, context.fDoSubPosition);
764 CGContextSetShouldSubpixelPositionFonts(fCG, context.fDoSubPosition);
768 CGContextSetGrayFillColor(fCG, 1.0f, 1.0f);
776 CGContextSetShouldAntialias(fCG, doAA);
780 CGContextSetShouldSmoothFonts(fCG, doLCD);
803 CGContextShowGlyphsAtPoint(fCG, -glyph.fLeft + subX,