Skip to content

CoreImage iOS xcode13.0 beta1

Rachel Kang edited this page Aug 31, 2021 · 3 revisions

#CoreImage.framework https://github.com/xamarin/xamarin-macios/pull/12601

diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h	2021-03-16 08:47:34.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h	2021-06-02 11:07:10.000000000 -0400
@@ -434,6 +434,15 @@
                                     colorSpace:(CGColorSpaceRef)colorSpace
                                        options:(NSDictionary<CIImageRepresentationOption, id>*)options NS_AVAILABLE(10_13_4,11_0);
 
+/* Render a CIImage to HEIF data. Image must have a finite non-empty extent. */
+/* The CGColorSpace must be kCGColorSpaceModelRGB or kCGColorSpaceModelMonochrome. */
+/* Supported options keys are kCGImageDestinationLossyCompressionQuality, */
+/* and the depth, disparity, and matte options. */
+- (nullable NSData*) HEIF10RepresentationOfImage:(CIImage*)image
+                                      colorSpace:(CGColorSpaceRef)colorSpace
+                                         options:(NSDictionary<CIImageRepresentationOption, id>*)options
+                                           error:(NSError **)errorPtr NS_AVAILABLE(12_0,15_0);
+
 /* Render a CIImage to PNG data. Image must have a finite non-empty extent. */
 /* The CGColorSpace must be kCGColorSpaceModelRGB or kCGColorSpaceModelMonochrome */
 /* and must match the specified CIFormat. */
@@ -487,6 +496,16 @@
                                 options:(NSDictionary<CIImageRepresentationOption, id>*)options
                                   error:(NSError **)errorPtr NS_AVAILABLE(10_13_4,11_0);
 
+/* Render a CIImage to 10-bit deep HEIF file. Image must have a finite non-empty extent. */
+/* The CGColorSpace must be kCGColorSpaceModelRGB or kCGColorSpaceModelMonochrome. */
+/* Supported options keys are kCGImageDestinationLossyCompressionQuality, */
+/* and the depth, disparity, and matte options. */
+- (BOOL) writeHEIF10RepresentationOfImage:(CIImage*)image
+                                    toURL:(NSURL*)url
+                               colorSpace:(CGColorSpaceRef)colorSpace
+                                  options:(NSDictionary<CIImageRepresentationOption, id>*)options
+                                    error:(NSError **)errorPtr NS_AVAILABLE(12_0,15_0);
+
 
 @end
 
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h	2021-03-16 09:54:38.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h	2021-06-02 05:37:55.000000000 -0400
@@ -815,6 +815,10 @@
   @property (nonatomic, retain, nullable) CIImage *backgroundImage;
   @property (nonatomic) float amount;
 @end
+@protocol CIPersonSegmentation <CIFilter>
+  @property (nonatomic, retain, nullable) CIImage *inputImage;
+  @property (nonatomic) NSUInteger qualityLevel;
+@end
 @protocol CIPixellate <CIFilter>
   @property (nonatomic, retain, nullable) CIImage *inputImage;
   @property (nonatomic) CGPoint center;
@@ -1025,6 +1029,7 @@
 + (CIFilter<CICompositeOperation>*) lightenBlendModeFilter;
 + (CIFilter<CICompositeOperation>*) linearBurnBlendModeFilter;
 + (CIFilter<CICompositeOperation>*) linearDodgeBlendModeFilter;
++ (CIFilter<CICompositeOperation>*) linearLightBlendModeFilter NS_AVAILABLE(12_0, 15_0);
 + (CIFilter<CICompositeOperation>*) luminosityBlendModeFilter;
 + (CIFilter<CICompositeOperation>*) maximumCompositingFilter;
 + (CIFilter<CICompositeOperation>*) minimumCompositingFilter;
@@ -1040,6 +1045,7 @@
 + (CIFilter<CICompositeOperation>*) sourceOutCompositingFilter;
 + (CIFilter<CICompositeOperation>*) sourceOverCompositingFilter;
 + (CIFilter<CICompositeOperation>*) subtractBlendModeFilter;
++ (CIFilter<CICompositeOperation>*) vividLightBlendModeFilter NS_AVAILABLE(12_0, 15_0);
 
 // CICategoryColorAdjustment
 + (CIFilter<CIColorAbsoluteDifference>*) colorAbsoluteDifferenceFilter NS_AVAILABLE(11_0, 14_0);
@@ -1160,6 +1166,11 @@
 + (CIFilter<CIConvolution>*) convolution7X7Filter;
 + (CIFilter<CIConvolution>*) convolution9HorizontalFilter;
 + (CIFilter<CIConvolution>*) convolution9VerticalFilter;
++ (CIFilter<CIConvolution>*) convolutionRGB3X3Filter NS_AVAILABLE(12_0, 15_0);
++ (CIFilter<CIConvolution>*) convolutionRGB5X5Filter NS_AVAILABLE(12_0, 15_0);
++ (CIFilter<CIConvolution>*) convolutionRGB7X7Filter NS_AVAILABLE(12_0, 15_0);
++ (CIFilter<CIConvolution>*) convolutionRGB9HorizontalFilter NS_AVAILABLE(12_0, 15_0);
++ (CIFilter<CIConvolution>*) convolutionRGB9VerticalFilter NS_AVAILABLE(12_0, 15_0);
 + (CIFilter<CICoreMLModel>*) coreMLModelFilter;
 + (CIFilter<CICrystallize>*) crystallizeFilter;
 + (CIFilter<CIDepthOfField>*) depthOfFieldFilter;
@@ -1172,6 +1183,7 @@
 + (CIFilter<CIHighlightShadowAdjust>*) highlightShadowAdjustFilter;
 + (CIFilter<CILineOverlay>*) lineOverlayFilter;
 + (CIFilter<CIMix>*) mixFilter;
++ (CIFilter<CIPersonSegmentation>*) personSegmentationFilter NS_AVAILABLE(12_0, 15_0);
 + (CIFilter<CIPixellate>*) pixellateFilter;
 + (CIFilter<CIPointillize>*) pointillizeFilter;
 + (CIFilter<CISaliencyMap>*) saliencyMapFilter;
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h	2021-03-16 09:54:39.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h	2021-06-02 05:37:56.000000000 -0400
@@ -4,13 +4,27 @@
 //  Copyright (c) 2017 Apple, Inc. All rights reserved.
 //
 
-#if __METAL_MACOS__ || __METAL_IOS__
+#if __METAL_VERSION__
 
 #ifndef CIKERNELMETALLIB_H
 #define CIKERNELMETALLIB_H
 
 #ifndef __CIKERNEL_METAL_VERSION__ // if not explicitly defined already
-    #if (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101400 || __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 120000 || __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 120000)
+    #if !defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \
+        !defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && \
+        !defined(__ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__)
+        #define __CIKERNEL_METAL_VERSION__ 200 // the includer of this didn't specify a MIN_REQUIRED compatibility
+    #elif (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 120000 || \
+        __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 150000 || \
+        __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 150000)
+        #if __METAL_CIKERNEL__
+            #define __CIKERNEL_METAL_VERSION__ 200
+        #else
+            #define __CIKERNEL_METAL_VERSION__ 300
+        #endif
+    #elif (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 101400 || \
+         __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= 120000 || \
+         __ENVIRONMENT_TV_OS_VERSION_MIN_REQUIRED__ >= 120000)
         #define __CIKERNEL_METAL_VERSION__ 200 // compatible w/ macOS 10.14/iOS 12.0/tvOS 12.0 or later
     #else
         #define __CIKERNEL_METAL_VERSION__ 100 // compatible w/ macOS 10.13/iOS 11.0/tvOS 11.0 or later
@@ -31,8 +45,17 @@
     
     //MARK: - Sampler
     
+#if __CIKERNEL_METAL_VERSION__ >= 300
+    typedef struct Sampler
+    {
+        friend Sampler make_sampler(texture2d<float, access::sample> t, metal::sampler s, constant float4x4& m, float2 dc );
+    private:
+        Sampler(texture2d<float, access::sample> t_, metal::sampler s_, constant float4x4& m_, float2 dc_):t(t_), s(s_),m(m_), dc(dc_){}
+    public:
+#else
     typedef struct
     {
+#endif
         // Returns the pixel value produced from sampler at the position p, where p is specified in sampler space.
         float4 sample(float2 p) const;
         
@@ -67,15 +90,24 @@
         
     private:
         texture2d<float, access::sample> t;
-        sampler s;
+        metal::sampler s;
         constant float4x4& m;
         float2 dc;
         
     } sampler;
     
 #if __CIKERNEL_METAL_VERSION__ >= 200
+#if __CIKERNEL_METAL_VERSION__ >= 300
+    typedef struct Sampler_h
+    {
+        friend Sampler_h make_sampler_h(texture2d<half, access::sample> t, metal::sampler s, constant float4x4& m, float2 dc );
+    private:
+        Sampler_h(texture2d<half, access::sample> t_, metal::sampler s_, constant float4x4& m_, float2 dc_):t(t_), s(s_),m(m_), dc(dc_){}
+    public:
+#else
     typedef struct
     {
+#endif //__CIKERNEL_METAL_VERSION__ >= 300
         // Returns the pixel value produced from sampler at the position p, where p is specified in sampler space.
         half4 sample(float2 p) const;
         
@@ -230,4 +262,4 @@
 
 #endif /* CIKERNELMETALLIB_H */
 
-#endif /* __METAL_MACOS__ || __METAL_IOS__ */
+#endif /* __METAL_VERSION__ */
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h	2021-03-16 13:56:29.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h	2021-06-02 05:35:23.000000000 -0400
@@ -1,4 +1,4 @@
-/* CoreImage - CIKernel.h
+/* CoreImage - CIRAWFilter.h
  
  Copyright (c) 2006 Apple, Inc.
  All rights reserved. */
@@ -7,12 +7,182 @@
 #import <CoreImage/CIFilter.h>
 #import <CoreImage/CoreImageDefines.h>
 #import <CoreVideo/CoreVideo.h>
-
+#import <ImageIO/CGImageProperties.h>
 
 @class NSURL;
 @class NSDictionary;
 @class NSData;
 
+NS_ASSUME_NONNULL_BEGIN
+
+NS_CLASS_AVAILABLE(12_0, 15_0)
+@interface CIRAWFilter : CIFilter
+
+typedef NSString* CIRAWDecoderVersion NS_TYPED_ENUM;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersionNone;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersion8;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersion8DNG;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersion7;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersion7DNG;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersion6;
+CORE_IMAGE_EXPORT CIRAWDecoderVersion const CIRAWDecoderVersion6DNG;
+
+/* Returns a NSArray containing the names of all supported camera models. */
+@property(class, readonly) NSArray<NSString*>* supportedCameraModels;
+
+/* Array of all supported decoder versions for the given image type, sorted in increasingly newer order. All entries would represent a valid version identifier set to 'decoderVersion'.*/
+@property(readonly) NSArray<CIRAWDecoderVersion>* supportedDecoderVersions;
+
+/* The full native size of the unscaled image. This is not affected by changing orientation */
+@property(readonly) CGSize nativeSize;
+
+/* Metadata properties CIRAWFilter instance
+   This is a dictionary with the same contents as CGImageSourceCopyProperties. */
+@property(readonly) NSDictionary* properties;
+
+/* Changing this value allows the user to change the orientation of the image.
+   The valid values are in range 1...8 and follow the EXIF specification. */
+@property(readwrite) CGImagePropertyOrientation orientation;
+
+/* Setting Draft Mode to true can improve image decoding speed with minimal loss of quality. */
+@property(readwrite, getter= isDraftModeEnabled) BOOL draftModeEnabled;
+
+/* Version string representing the decoder version to be used. A newly initialized object defaults to the newest available decoder version for the given image type. User can request an alternative, older version in order to maintain compatibility with older releases. Must be one of supportedDecoderVersions (above), otherwise a nil output image will be generated. */
+@property(readwrite, retain) CIRAWDecoderVersion decoderVersion;
+
+/* The desired scale factor at which the image will be eventually drawn. Setting this value can greatly improve the drawing performance.
+   A value of 1.0 results in a full size output image, values smaller than 1 will result in a smaller output image.
+   The value should be the range of 0...1. Default value is 1 */
+@property(readwrite) float scaleFactor;
+
+/* A value controlling the amount of exposure to apply to the image. Default value is 0. */
+@property(readwrite) float exposure;
+
+/* A value for baseline exposure applied to the image. Default value can vary based on the image. */
+@property(readwrite) float baselineExposure;
+
+/* A value controlling an amount to subtract from shadows the image. Default value can vary based on the image. */
+@property(readwrite) float shadowBias;
+
+/* A value to control the amount of global tone curve to apply to the image.
+   A value of 0 indicates no global tone curve, i.e. linear response.
+   A value of 1 indicates full global tone curve.
+   The value should be the range of 0...1.  The default value is 1. */
+@property(readwrite) float boostAmount;
+
+/* The amount to boost the shadow areas of the image. Can be used to lighten details in shadows. This has no effect if the boostAmount is 0.
+   A value less than 1 will darken the shadows.  A value greater than 1 will lighten the shadows.
+   The value should be the range of 0...2.  The default value is 1. */
+@property(readwrite) float boostShadowAmount;
+
+/* A boolean value to control if gamut mapping is enabled or not.
+   The default value is true. */
+@property(readwrite, getter= isGamutMappingEnabled) BOOL gamutMappingEnabled;
+
+/* A boolean value to control if gamut mapping is enabled or not.
+   The default value can vary based on the image.
+   The 'isLensCorrectionSupported' property is false if the current image doesn't support this setting. */
+@property(readonly, getter= isLensCorrectionSupported) BOOL lensCorrectionSupported;
+@property(readwrite, getter= isLensCorrectionEnabled) BOOL lensCorrectionEnabled;
+
+/* A value to control the amount of luminance noise reduction to apply to the image.
+   A value of 0 indicates no luminance noise reduction.
+   A value of 1 indicates maximum luminance noise reduction.
+   The value should be the range of 0...1.  The default value will vary per image.
+   The 'isLuminanceNoiseReductionSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isLuminanceNoiseReductionSupported) BOOL luminanceNoiseReductionSupported;
+@property(readwrite) float luminanceNoiseReductionAmount;
+
+/* A value to control the amount of chroma noise reduction to apply to the image.
+   A value of 0 indicates no chroma noise reduction.
+   A value of 1 indicates maximum chroma noise reduction.
+   The value should be the range of 0...1.  The default value will vary per image.
+   The 'isColorNoiseReductionSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isColorNoiseReductionSupported) BOOL colorNoiseReductionSupported;
+@property(readwrite) float colorNoiseReductionAmount;
+
+/* A value to control the amount of sharpness to apply to the edges of the image.
+   A value of 0 indicates no sharpness applied.
+   A value of 1 indicates maximum sharpness applied.
+   The value should be the range of 0...1.  The default value will vary per image.
+   The 'isSharpnessSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isSharpnessSupported) BOOL sharpnessSupported;
+@property(readwrite) float sharpnessAmount;
+
+/* A value to control the amount of local contrast to apply to the edges of the image.
+   A value of 0 indicates no contrast applied.
+   A value of 1 indicates maximum contrast applied.
+   The value should be the range of 0...1.  The default value will vary per image.
+   The 'isContrastSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isContrastSupported) BOOL contrastSupported;
+@property(readwrite) float contrastAmount;
+
+/* A value to control the amount of detail enhancement to apply to the edges of the image.
+   A value of 0 indicates no detail enhancement.
+   A value of 3 indicates maximum detail enhancement.
+   The value should be the range of 0...3.  The default value will vary per image.
+   The 'isDetailSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isDetailSupported) BOOL detailSupported;
+@property(readwrite) float detailAmount;
+
+/* A value to control the amount of moire artifact reduction to apply to high frequency areas of the image.
+   A value of 0 indicates no moire reduction.
+   A value of 3 indicates maximum moire reduction.
+   The value should be the range of 0...1.  The default value will vary per image.
+   The 'isMoireReductionSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isMoireReductionSupported) BOOL moireReductionSupported;
+@property(readwrite) float moireReductionAmount;
+
+/* A value to control the amount of local tone curve to apply to the image.
+   A value of 0 indicates no local tone curve, i.e. linear response.
+   A value of 1 indicates full global tone curve.
+   The value should be the range of 0...1.  The default value will vary per image.
+   The 'isLocalToneMapSupported' property is false if the current image doesn't support this adjustment. */
+@property(readonly, getter= isLocalToneMapSupported) BOOL localToneMapSupported;
+@property(readwrite) float localToneMapAmount;
+
+/* Allows the output to have an Extended Dynamic Range with values greater than 1 possible.
+   A value of 0 indicates no extended dynamic range output.
+   A value of 1 indicates default extended dynamic range output.
+   A value of 2 indicates maximum extended dynamic range output.
+   The value should be the range of 0...2.  The default value is 0. */
+@property(readwrite) float extendedDynamicRangeAmount;
+
+/* These properties provide differnet was to query or modify the image white balance
+   Use 'neutralChromaticity' to query or change white balance based on x,y chromaticity values in the range (0..1)
+   Use 'neutralTemperature' and 'neutralTemperature' to query or change white balance based temp/tint values in the ranges (2000K..50000K, -150..150)
+   Use 'neutralLocation' to change the white balance based on an x,y pixel coordiniates in the image.
+ */
+@property(readwrite) CGPoint neutralChromaticity;
+@property(readwrite) CGPoint neutralLocation;
+@property(readwrite) float neutralTemperature;
+@property(readwrite) float neutralTint;
+
+/* An optional CIFilter to be applied to the RAW image while it is in linear space. */
+@property(readwrite, retain, nullable) CIFilter* linearSpaceFilter;
+
+/* Properties for auxiliary images that may be present in the file */
+@property(readonly, nullable) CIImage* previewImage;
+@property(readonly, nullable) CIImage* portraitEffectsMatte;
+@property(readonly, nullable) CIImage* semanticSegmentationSkinMatte;
+@property(readonly, nullable) CIImage* semanticSegmentationHairMatte;
+@property(readonly, nullable) CIImage* semanticSegmentationGlassesMatte;
+@property(readonly, nullable) CIImage* semanticSegmentationSkyMatte;
+@property(readonly, nullable) CIImage* semanticSegmentationTeethMatte;
+
++ (nullable instancetype)filterWithImageURL:(NSURL *)url;
+
++ (nullable instancetype)filterWithImageData:(NSData *)data
+							  identifierHint:(nullable NSString *)identifierHint;
+
++ (nullable instancetype)filterWithCVPixelBuffer:(CVPixelBufferRef)buffer
+									  properties:(NSDictionary *)properties;
+
+@end
+
+NS_ASSUME_NONNULL_END
+
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
 typedef NSString * CIRAWFilterOption NS_TYPED_ENUM;
 
 /** CIRAWFilter is a category of CIFilter which returns a CIFilter initialized with a RAW image. It allows the user to influence key aspects of the raw processing, such as white balance, exposure, sharpening or boost. */
@@ -20,135 +190,173 @@
 @interface CIFilter (CIRAWFilter)
 
 /** Returns a CIFilter that will in turn return a properly processed CIImage as "outputImage". */
-+ (CIFilter *)filterWithImageURL:(NSURL *)url options:(NSDictionary<CIRAWFilterOption, id> *)options NS_AVAILABLE(10_5, 10_0);
++ (CIFilter *)filterWithImageURL:(NSURL *)url options:(NSDictionary<CIRAWFilterOption, id> *)options API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED));
 
 /** Returns a CIFilter that will in turn return a properly processed CIImage as "outputImage".
 
  Note that when using this initializer, you should pass in a source type identifier hint (kCGImageSourceTypeIdentifierHint) key/value pair in order to help the decoder determine the file type, as otherwise confusion and incorrect results are possible. */
-+ (CIFilter *)filterWithImageData:(NSData *)data options:(NSDictionary<CIRAWFilterOption, id> *)options NS_AVAILABLE(10_5, 10_0);
++ (CIFilter *)filterWithImageData:(NSData *)data options:(NSDictionary<CIRAWFilterOption, id> *)options API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED));
 
 /** Returns a CIFilter that will in turn return a properly processed CIImage as "outputImage".
  
  Note that when using this initializer, you should pass in a CVPixelBufferRef with one of the following Raw pixel format types
     kCVPixelFormatType_14Bayer_GRBG, kCVPixelFormatType_14Bayer_RGGB, kCVPixelFormatType_14Bayer_BGGR, kCVPixelFormatType_14Bayer_GBRG
  as well as the root properties attachment from the CMSampleBufferRef. */
-+ (CIFilter *)filterWithCVPixelBuffer:(CVPixelBufferRef)pixelBuffer properties:(NSDictionary *)properties options:(NSDictionary<CIRAWFilterOption, id> *)options NS_AVAILABLE(10_12, 10_0);
++ (CIFilter *) filterWithCVPixelBuffer:(CVPixelBufferRef)pixelBuffer properties:(NSDictionary *)properties options:(NSDictionary<CIRAWFilterOption, id> *)options API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.12, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED));
 
 /** Returns a NSArray containing the names of all supported RAW cameras. */
-+ (NSArray<NSString*> *) supportedRawCameraModels NS_AVAILABLE(10_15,13_0);
++ (NSArray<NSString*> *) supportedRawCameraModels API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.15, API_TO_BE_DEPRECATED), ios(13.0, API_TO_BE_DEPRECATED), tvos(13.0, API_TO_BE_DEPRECATED));
 
 /** NSNumber (BOOL) : Setting Draft Mode to YES can improve image decoding speed without minimal loss of quality.
     The default value is NO. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputAllowDraftModeKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputAllowDraftModeKey;
 
 /** NSString: Version string representing the decoder version to be used. A newly initialized object defaults to the newest available decoder version for the given image type. User can request an alternative, older version in order to maintain compatibility with older releases. Must be one of kCISupportedDecoderVersions (below), otherwise a nil output image will be generated. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputDecoderVersionKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputDecoderVersionKey;
 
 /** NSArray : Array of all supported decoder versions for the given image type, sorted in increasingly newer order. Each entry is a NSString. All entries would represent a valid version identifier to be passed in for kCIInputDecoderVersion. This value can be only read; setting this value will raise an exception.*/
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCISupportedDecoderVersionsKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCISupportedDecoderVersionsKey;
 
 
 
 /** @const      kCIInputEVKey
  NSNumber (float) : Exposure adjustment, default = 0.0. Declared in CIFilter.h */
 
+/** @const      kCIInputBiasKey
+ NSNumber (float) : Exposure bias adjustment, default = 0.0. Declared in CIFilter.h */
+
 /** NSNumber (float) : A value controlling the amount of baseline exposure applied to the image.
  A value of 0 indicates no baseline exposure, i.e. linear response. Default varies from with camera settings. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputBaselineExposureKey NS_AVAILABLE(10_12, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.12, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputBaselineExposureKey;
 
 /** NSNumber (float) : A value in the range of 0...1, controlling the amount of boost applied to the image.
     A value of 0 indicates no boost, i.e. linear response. Default is 1, full boost. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputBoostKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputBoostKey;
 
 /** NSNumber (float) : The amount to boost the shadow areas of the image. Can be used to lighten details in shadows. 
     Has no effect if the image used for initialization was not RAW. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputBoostShadowAmountKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputBoostShadowAmountKey;
 
 /** NSNumber (BOOL) : Setting DisableGamutMap to YES disables gamut mapping.
     The default value is NO. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputDisableGamutMapKey NS_AVAILABLE(10_12, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.12, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputDisableGamutMapKey;
 
 /** NSNumber (float): The X value of the chromaticity. You can always query this value and you'll get the current X value for neutral X,Y. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralChromaticityXKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralChromaticityXKey;
 
 /** NSNumber (float): The Y value of the chromaticity. You can always query this value and you'll get the current Y value for neutral X,Y. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralChromaticityYKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralChromaticityYKey;
 
 /** NSNumber (float) : The color temperature to be considered neutral. You can always query this value and you'll get the current value for temperature. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralTemperatureKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralTemperatureKey;
 
 /** NSNumber (float) : The tint to be considered neutral. You can always query this value and you'll get the current value for tint. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralTintKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralTintKey;
 
 /** CIVector : (x, y) location in geometric coordinates of the unrotated output image that should be used as neutral. 
     You can't query this value - it's undefined for reading. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralLocationKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNeutralLocationKey;
 
 /** NSNumber (float) : The desired scale factor at which the image will be eventually drawn. Setting this value can greatly improve the drawing performance. A value of 1 would mean identity, values smaller than 1 will result in a smaller output image. Changing the Scale Factor with enabled Draft Mode may also improve performance. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputScaleFactorKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputScaleFactorKey;
 
 
 
 
 /** NSNumber (BOOL) : Normally, an image is loaded in its proper orientation, given the associated metadata gives an indication about the orientation. For special purposes it may be useful to load the image in its physical orientation. The exact meaning of this is dependent on the image in question. The default value is NO. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputIgnoreImageOrientationKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputIgnoreImageOrientationKey;
 
 
 /** NSNumber (int) : Overriding this value allows the user to change the orientation of the image. The valid values are in range 1...8 and follow the EXIF specification. Changing this value makes for instance rotation in 90-degree increments easy. The value is disregarded when the kCIInputIgnoreImageOrientationKey flag is set.
  */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputImageOrientationKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputImageOrientationKey;
 
 
 
 /** NSNumber (BOOL) : Determines if the default sharpening should be on. default = YES. Has no effect if the image used for initialization was not RAW. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableSharpeningKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableSharpeningKey;
 
 /** NSNumber (BOOL) : Determines if progressive chromatic noise tracking (based on ISO and exposure time) should be used. default = YES. Has no effect if the image used for initialization was not RAW. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableChromaticNoiseTrackingKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableChromaticNoiseTrackingKey;
 
 /** NSNumber (double) : The amount of noise reduction applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionAmountKey NS_AVAILABLE(10_7, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.7, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionAmountKey;
 
 /** NSNumber (double) : The amount of moire reduction applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputMoireAmountKey NS_AVAILABLE(10_13, 11_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.13, API_TO_BE_DEPRECATED), ios(11.0, API_TO_BE_DEPRECATED), tvos(11.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputMoireAmountKey;
 
 /** NSNumber (BOOL) : Determines if the default vendor lens correction be on. default = YES if raw image used for initialization contains lens distortion parameters. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableVendorLensCorrectionKey NS_AVAILABLE(10_10, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.10, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableVendorLensCorrectionKey;
 
 /** NSNumber (double) : The amount of luminance noise reduction applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputLuminanceNoiseReductionAmountKey NS_AVAILABLE(10_10, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.10, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputLuminanceNoiseReductionAmountKey;
 
 /** NSNumber (double) : The amount of color noise reduction applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputColorNoiseReductionAmountKey NS_AVAILABLE(10_10, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.10, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputColorNoiseReductionAmountKey;
 
 /** NSNumber (double) : The amount of noise reduction sharpness applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionSharpnessAmountKey NS_AVAILABLE(10_10, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.10, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionSharpnessAmountKey;
 
 /** NSNumber (double) : The amount of noise reduction contrast applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionContrastAmountKey NS_AVAILABLE(10_10, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.10, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionContrastAmountKey;
 
 /** NSNumber (double) : The amount of noise reduction detail applied. Range is 0 to 1. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionDetailAmountKey NS_AVAILABLE(10_10, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.10, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputNoiseReductionDetailAmountKey;
 
 
 /** NSNumber (BOOL) : Allows the output to have an Extended Dynamic Range with values greater than 1 possible */
-CORE_IMAGE_EXPORT NSString *const kCIInputEnableEDRModeKey NS_AVAILABLE(10_14, 12_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.14, API_TO_BE_DEPRECATED), ios(12.0, API_TO_BE_DEPRECATED), tvos(12.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputEnableEDRModeKey;
 
 
 /** NSNumber (double): The amount of the local tone map. Range is 0 to 1. Default is 1  */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputLocalToneMapAmountKey NS_AVAILABLE(11_1, 14_3);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(11.1, API_TO_BE_DEPRECATED), ios(14.3, API_TO_BE_DEPRECATED), tvos(14.3, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputLocalToneMapAmountKey;
 
 
 /** CIFilter (id) : CIFilter to be applied to the RAW image while it is in linear space. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputLinearSpaceFilter NS_AVAILABLE(10_7, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.7, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIInputLinearSpaceFilter;
 
 /** CIVector containing the full native size of the unscaled image. The vector's X value is the width, Y is the height. 
     This is not affected by changing either kCIInputIgnoreImageOrientationKey or kCIInputImageOrientationKey. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIOutputNativeSizeKey NS_AVAILABLE(10_5, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.5, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIOutputNativeSizeKey;
 
 /** Read-only NSSet containing a list of keys that affect the output image. 
     Depending on the RAW decoder version (kCIInputDecoderVersionKey) and the input image type, 
     some input keys might have no effect. */
-CORE_IMAGE_EXPORT CIRAWFilterOption const kCIActiveKeys NS_AVAILABLE(10_7, 10_0);
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(10.7, API_TO_BE_DEPRECATED), ios(10.0, API_TO_BE_DEPRECATED), tvos(10.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIActiveKeys;
+
+/** Read-only NSDictionary containing properties for the output image. */
+API_DEPRECATED("Use new CIRAWFilter class instead.", macos(12.0, API_TO_BE_DEPRECATED), ios(15.0, API_TO_BE_DEPRECATED), tvos(15.0, API_TO_BE_DEPRECATED))
+CORE_IMAGE_EXPORT CIRAWFilterOption const kCIPropertiesKey;
 
 @end
+
diff -ruN /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes
--- /Applications/Xcode_12.5.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes	2021-03-16 03:42:36.000000000 -0400
+++ /Applications/Xcode_13.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes	2021-05-22 06:29:59.000000000 -0400
@@ -235,6 +235,8 @@
   SwiftName: priorityRequestHigh
 - Name: kCIContextAllowHalfPrecision
   SwiftName: allowHalfPrecision
+- Name: kCIContextLossyCompressedIntermediates
+  SwiftName: lossyCompressedIntermediates
 
 # CIImageAutoAdjustmentOption
 - Name: kCIImageAutoAdjustEnhance
@@ -305,6 +307,8 @@
   SwiftName: outputNativeSize
 - Name: kCIActiveKeys
   SwiftName: activeKeys
+- Name: kCIPropertiesKey
+  SwiftName: propertiesKey
 
 Classes:
 
Clone this wiki locally