Home | History | Annotate | Download | only in ports

Lines Matching refs:fCG

287     CGContextRef    fCG;
298 Offscreen::Offscreen() : fRGBSpace(NULL), fCG(NULL) {
303 CFSafeRelease(fCG);
724 if (!fCG || fSize.fWidth < glyph.fWidth || fSize.fHeight < glyph.fHeight) {
725 CFSafeRelease(fCG);
735 fCG = CGBitmapContextCreate(image, fSize.fWidth, fSize.fHeight, 8,
740 CGContextSetAllowsFontSubpixelQuantization(fCG, false);
741 CGContextSetShouldSubpixelQuantizeFonts(fCG, false);
743 CGContextSetTextDrawingMode(fCG, kCGTextFill);
744 CGContextSetFont(fCG, context.fCGFont);
745 CGContextSetFontSize(fCG, 1);
746 CGContextSetTextMatrix(fCG, context.fTransform);
748 CGContextSetAllowsFontSubpixelPositioning(fCG, context.fDoSubPosition);
749 CGContextSetShouldSubpixelPositionFonts(fCG, context.fDoSubPosition);
758 CGContextSetShouldAntialias(fCG, doAA);
762 CGContextSetShouldSmoothFonts(fCG, doLCD);
766 CGContextSetGrayFillColor(fCG, fgColorIsWhite ? 1.0 : 0, 1.0);
795 CGContextShowGlyphsAtPoint(fCG, -glyph.fLeft + subX,