コード例 #1
0
ファイル: CIImage.cs プロジェクト: cwensley/xamarin-macios
 public static CIImage FromProvider(ICIImageProvider provider, nuint width, nuint height, CIFormat pixelFormat, CGColorSpace colorSpace, CIImageProviderOptions options)
 {
     return(FromProvider(provider, width, height, CIImage.CIFormatToInt(pixelFormat), colorSpace, options == null ? null : options.Dictionary));
 }
コード例 #2
0
ファイル: CIImage.cs プロジェクト: cwensley/xamarin-macios
 public CIImage(ICIImageProvider provider, nuint width, nuint height, CIFormat pixelFormat, CGColorSpace colorSpace, CIImageProviderOptions options)
     : this(provider, width, height, CIImage.CIFormatToInt(pixelFormat), colorSpace, options == null ? null : options.Dictionary)
 {
 }
コード例 #3
0
ファイル: CIImage.cs プロジェクト: cwensley/xamarin-macios
 public static CIImage FromData(NSData bitmapData, nint bytesPerRow, CGSize size, CIFormat pixelFormat, CGColorSpace colorSpace)
 {
     return(FromData(bitmapData, bytesPerRow, size, CIImage.CIFormatToInt(pixelFormat), colorSpace));
 }
コード例 #4
0
		public CGImage CreateCGImage (CIImage image, CGRect fromRect, CIFormat ciImageFormat, CGColorSpace colorSpace)
		{
			return CreateCGImage (image, fromRect, CIImage.CIFormatToInt (ciImageFormat), colorSpace);
		}
コード例 #5
0
 public CISampler(CIImage sourceImage, CISamplerOptions?options) : this(sourceImage, options?.ToDictionary())
 {
 }
コード例 #6
0
ファイル: CISampler.cs プロジェクト: tondat/xamarin-macios
 public CISampler(CIImage sourceImage, CISamplerOptions options) : this(sourceImage, options == null ? null : options.ToDictionary())
 {
 }
コード例 #7
0
 internal void SetInputImage(CIImage value)
 {
     SetValueForKey(value, CIFilterInputKey.Image);
 }