示例#1
0
		public void DrawLayer (CGLayer layer, CGPoint point)
		{
			if (layer == null)
				throw new ArgumentNullException ("layer");
			CGContextDrawLayerAtPoint (handle, point, layer.Handle);
		}
示例#2
0
		public void DrawLayer (CGLayer layer, CGRect rect)
		{
			if (layer == null)
				throw new ArgumentNullException ("layer");
			CGContextDrawLayerInRect (handle, rect, layer.Handle);
		}
示例#3
0
 public CIImage(CGLayer layer, NSDictionary d)
 {
     throw new NotSupportedException ();
 }
示例#4
0
 public CIImage(CGLayer layer, CIImageInitializationOptions options)
 {
     throw new NotSupportedException ();
 }
示例#5
0
 public CIImage(CGLayer layer)
 {
     throw new NotSupportedException ();
 }