[coreimage] Update for Xcode 12.1 GM (#9886)

This commit is contained in:
Sebastien Pouliot 2020-10-15 13:53:20 -04:00 коммит произвёл GitHub
Родитель 8497df4c93
Коммит 5f220b7549
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 30 добавлений и 4 удалений

Просмотреть файл

@ -506,6 +506,12 @@ namespace CoreImage {
[Export ("depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:hairSemanticSegmentation:orientation:options:")]
[return: NullAllowed]
CIFilter GetDepthBlurEffectFilter (CIImage image, CIImage disparityImage, [NullAllowed] CIImage portraitEffectsMatte, [NullAllowed] CIImage hairSemanticSegmentation, CGImagePropertyOrientation orientation, [NullAllowed] NSDictionary options);
[iOS (14,1)]
[NoTV][NoMac]
[Export ("depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:hairSemanticSegmentation:glassesMatte:gainMap:orientation:options:")]
[return: NullAllowed]
CIFilter GetDepthBlurEffectFilter (CIImage image, CIImage disparityImage, [NullAllowed] CIImage portraitEffectsMatte, [NullAllowed] CIImage hairSemanticSegmentation, [NullAllowed] CIImage glassesMatte, [NullAllowed] CIImage gainMap, CGImagePropertyOrientation orientation, [NullAllowed] NSDictionary options);
}
[BaseType (typeof (NSObject))]
@ -1327,6 +1333,14 @@ namespace CoreImage {
[iOS (13,0)][TV (13,0)][Mac (10,15)]
bool AuxiliarySemanticSegmentationTeethMatte { get; set; }
[iOS (14,1)]
[NoTV][NoMac]
bool AuxiliarySemanticSegmentationGlassesMatte { get; set; }
[iOS (14,1)]
[NoTV][NoMac]
bool ToneMapHdrToSdr { get; set; }
}
[Internal]
@ -1369,6 +1383,17 @@ namespace CoreImage {
[iOS (13,0)][TV (13,0)][Mac (10,15)]
[Field ("kCIImageAuxiliarySemanticSegmentationTeethMatte")]
NSString AuxiliarySemanticSegmentationTeethMatteKey { get; }
[iOS (14, 1)]
[NoTV][NoMac]
[Field ("kCIImageAuxiliarySemanticSegmentationGlassesMatte")]
NSString AuxiliarySemanticSegmentationGlassesMatteKey { get; }
[iOS (14,1)]
[NoTV][NoMac]
[Field ("kCIImageToneMapHDRtoSDR")]
NSString ToneMapHdrToSdrKey { get; }
}
[BaseType (typeof (NSObject))]
@ -5728,6 +5753,11 @@ namespace CoreImage {
[iOS (13,0)][TV (13,0)][Mac (10,15)]
[Field ("kCIImageRepresentationSemanticSegmentationTeethMatteImage")]
NSString SemanticSegmentationTeethMatteImageKey { get; }
[iOS (14,1)]
[NoTV][NoMac]
[Field ("kCIImageRepresentationSemanticSegmentationGlassesMatteImage")]
NSString SemanticSegmentationGlassesMatteImage { get; }
}
[iOS (11,0)]

Просмотреть файл

@ -1,4 +0,0 @@
!missing-field! kCIImageAuxiliarySemanticSegmentationGlassesMatte not bound
!missing-field! kCIImageRepresentationSemanticSegmentationGlassesMatteImage not bound
!missing-field! kCIImageToneMapHDRtoSDR not bound
!missing-selector! CIContext::depthBlurEffectFilterForImage:disparityImage:portraitEffectsMatte:hairSemanticSegmentation:glassesMatte:gainMap:orientation:options: not bound