Home | History | Annotate | Download | only in ports

Lines Matching refs:image

63     CGImageRef image = CGImageSourceCreateImageAtIndex(imageSrc, 0, NULL);
64 if (NULL == image) {
67 SkAutoTCallVProc<CGImage, CGImageRelease> arimage(image);
69 const int width = CGImageGetWidth(image);
70 const int height = CGImageGetHeight(image);
84 CGColorSpaceRef cs = CGImageGetColorSpace(image);
87 // perhaps the image's colorspace does not work for a context, so try just rgb
92 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image);
95 CGImageAlphaInfo info = CGImageGetAlphaInfo(image);
182 // <Error>: CGImageDestinationAddImage image could not be converted to destination
184 // <Error>: CGImageDestinationFinalize image destination does not have enough images
202 CGImageRef image = SkCreateCGImageRef(*bmPtr);
203 if (NULL == image) {
206 SkAutoTCallVProc<CGImage, CGImageRelease> agimage(image);
208 CGImageDestinationAddImage(dst, image, NULL);