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