示例#1
0
 public CISampler FromImage(CIImage sourceImage, CISamplerOptions options)
 {
     if (options == null)
     {
         return(FromImage(sourceImage));
     }
     return(FromImage(sourceImage, options.ToDictionary()));
 }
示例#2
0
		public CISampler (CIImage sourceImage, CISamplerOptions options) : this (sourceImage, options == null ? null : options.ToDictionary ())
		{
		}
示例#3
0
 public CISampler(CIImage sourceImage, CISamplerOptions options) : this(sourceImage, options == null ? null : options.ToDictionary())
 {
 }
示例#4
0
		public CISampler FromImage (CIImage sourceImage, CISamplerOptions options)
		{
			if (options == null)
				return FromImage (sourceImage);
			return FromImage (sourceImage, options.ToDictionary ());
		}