public void DrawImage(RGImage image, RGFloat x, RGFloat y, RGFloat width, RGFloat height) { throw new NotImplementedException(); }
public void DrawImage(RGImage image, Rectangle rect) { throw new NotImplementedException(); }
public void ClipToMask(CGRect rect, CGImage mask) { CGContextClipToMask(handle, rect, mask == null ? IntPtr.Zero : mask.handle); }
public void DrawTiledImage(CGRect rect, CGImage image) { CGContextDrawTiledImage(handle, rect, image == null ? IntPtr.Zero : image.Handle); }
partial void Init(CoreGraphics.CGImage img) { this.image = img; }