Home | History | Annotate | Download | only in cg

Lines Matching defs:platformContext

131 CGContextRef GraphicsContext::platformContext() const
142 CGContextSaveGState(platformContext());
150 CGContextRestoreGState(platformContext());
163 CGContextRef context = platformContext();
238 CGContextRef context = platformContext();
319 CGContextRef context = platformContext();
420 CGContextRef context = platformContext();
441 CGContextRef context = platformContext();
456 CGContextRef cgContext = platformContext();
471 CGContextRef cgContext = platformContext();
516 CGContextRef context = platformContext();
553 CGContextRef context = platformContext();
605 CGContextRef context = platformContext();
670 CGContextRef context = platformContext();
703 CGContextSetShadowWithColor(platformContext(), CGSizeZero, 0, 0);
720 CGContextRef context = platformContext();
732 CGContextSetShadowWithColor(platformContext(), CGSizeZero, 0, 0);
752 CGContextRef context = platformContext();
765 CGContextSetShadowWithColor(platformContext(), CGSizeZero, 0, 0);
793 CGContextRef context = platformContext();
817 CGContextSetShadowWithColor(platformContext(), CGSizeZero, 0, 0);
836 CGContextClipToRect(platformContext(), rect);
845 CGRect rects[2] = { CGContextGetClipBoundingBox(platformContext()), rect };
846 CGContextBeginPath(platformContext());
847 CGContextAddRects(platformContext(), rects, 2);
848 CGContextEOClip(platformContext());
859 CGContextRef context = platformContext();
861 CGContextBeginPath(platformContext());
862 CGContextAddPath(platformContext(), path.platformPath());
872 return enclosingIntRect(CGContextGetClipBoundingBox(platformContext()));
881 CGContextRef context = platformContext();
896 CGContextRef context = platformContext();
908 CGContextRef context = platformContext();
925 CGContextRef context = platformContext();
973 CGContextSetShadowWithColor(platformContext(), CGSizeZero, 0, 0);
980 CGContextSetMiterLimit(platformContext(), limit);
987 CGContextSetAlpha(platformContext(), alpha);
994 CGContextClearRect(platformContext(), r);
1002 CGContextRef context = platformContext();
1056 CGContextSetLineCap(platformContext(), kCGLineCapButt);
1059 CGContextSetLineCap(platformContext(), kCGLineCapRound);
1062 CGContextSetLineCap(platformContext(), kCGLineCapSquare);
1069 CGContextSetLineDash(platformContext(), dashOffset, dashes.data(), dashes.size());
1078 CGContextSetLineJoin(platformContext(), kCGLineJoinMiter);
1081 CGContextSetLineJoin(platformContext(), kCGLineJoinRound);
1084 CGContextSetLineJoin(platformContext(), kCGLineJoinBevel);
1093 CGContextRef context = platformContext();
1118 CGContextBeginPath(platformContext());
1119 CGContextAddRect(platformContext(), CGContextGetClipBoundingBox(platformContext()));
1120 CGContextAddPath(platformContext(), path.platformPath());
1121 CGContextEOClip(platformContext());
1128 CGContextScaleCTM(platformContext(), size.width(), size.height());
1137 CGContextRotateCTM(platformContext(), angle);
1146 CGContextTranslateCTM(platformContext(), x, y);
1155 CGContextConcatCTM(platformContext(), transform);
1164 CGContextSetCTM(platformContext(), transform);
1171 CGAffineTransform t = CGContextGetCTM(platformContext());
1188 CGAffineTransform deviceMatrix = CGContextGetUserSpaceToDeviceSpaceTransform(platformContext());
1256 CGContextSetShouldAntialias(platformContext(), false);
1263 setCGFillColor(platformContext(), strokeColor(), strokeColorSpace());
1264 CGContextFillRect(platformContext(), CGRectMake(x, y, lineLength, thickness));
1266 setCGFillColor(platformContext(), fillColor(), fillColorSpace());
1269 CGContextSetShouldAntialias(platformContext(), true);
1281 CGContextRef context = platformContext();
1321 CGContextSetInterpolationQuality(platformContext(), quality);
1329 CGInterpolationQuality quality = CGContextGetInterpolationQuality(platformContext());
1357 CGContextRef context = platformContext();
1394 CGContextRef context = platformContext();
1429 setCGStrokeColor(platformContext(), color, colorSpace);
1436 CGContextSetLineWidth(platformContext(), thickness);
1443 setCGFillColor(platformContext(), color, colorSpace);
1450 CGContextSetShouldAntialias(platformContext(), enable);
1457 CGContextSetShouldSmoothFonts(platformContext(), enable);
1511 CGContextSetBlendMode(platformContext(), target);