Lines Matching defs:cg
136 void SkCGDrawBitmap(CGContextRef cg, const SkBitmap& bm, float x, float y) {
142 CGContextSaveGState(cg);
143 CGContextTranslateCTM(cg, x, r.size.height + y);
144 CGContextScaleCTM(cg, 1, -1);
146 CGContextDrawImage(cg, r, img.get());
148 CGContextRestoreGState(cg);
172 CGContextRef cg = CGBitmapContextCreate(pmap.writable_addr(), pmap.width(), pmap.height(),
174 return cg;
195 SkUniqueCFRef<CGContextRef> cg(CGBitmapContextCreate(
198 if (!cg) {
204 CGContextSetBlendMode(cg.get(), kCGBlendModeCopy);
206 CGContextDrawImage(cg.get(), CGRectMake(0, 0, info.width(), info.height()), image);