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