diff options
Diffstat (limited to 'macosx/HBImageUtilities.h')
-rw-r--r-- | macosx/HBImageUtilities.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/macosx/HBImageUtilities.h b/macosx/HBImageUtilities.h index 6258d5d4f..beb19593f 100644 --- a/macosx/HBImageUtilities.h +++ b/macosx/HBImageUtilities.h @@ -6,6 +6,11 @@ #import <Foundation/Foundation.h> -CGImageRef CreateScaledCGImageFromCGImage(CGImageRef image, CGFloat thumbnailHeight); -CGImageRef CGImageRotated(CGImageRef imgRef, CGFloat angle, BOOL flipped) CF_RETURNS_RETAINED; +CF_ASSUME_NONNULL_BEGIN + +CGImageRef __nullable CreateScaledCGImageFromCGImage(CGImageRef image, CGFloat thumbnailHeight); +CGImageRef __nullable CGImageRotated(CGImageRef imgRef, CGFloat angle, BOOL flipped) CF_RETURNS_RETAINED; CGColorSpaceRef copyColorSpace(int primaries, int transfer, int matrix); + +CF_ASSUME_NONNULL_END + |