diff options
author | Akihiko Odaki <akihiko.odaki@gmail.com> | 2021-03-05 21:13:04 +0900 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-11 10:06:44 +0100 |
commit | ae57d35cf0edc8f789d1d402f7494fbd7f3c07c5 (patch) | |
tree | 816759610c6b92b9296312fb959f8ac7f31f2a70 /ui/cocoa.m | |
parent | e251b5876383cac918b2cd03be034a5d24310b87 (diff) | |
download | qemu-ae57d35cf0edc8f789d1d402f7494fbd7f3c07c5.zip |
ui/cocoa: Use kCGColorSpaceSRGB
kCGColorSpaceGenericRGB | Apple Developer Documentation
https://developer.apple.com/documentation/coregraphics/kcgcolorspacegenericrgb
> Deprecated
> Use kCGColorSpaceSRGB instead.
This change also removes the legacy color space specification for
PowerPC.
Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com>
Message-Id: <20210305121304.65096-1-akihiko.odaki@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/cocoa.m')
-rw-r--r-- | ui/cocoa.m | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/ui/cocoa.m b/ui/cocoa.m index f27beb30e6..3e1a7b7d51 100644 --- a/ui/cocoa.m +++ b/ui/cocoa.m @@ -463,13 +463,8 @@ QemuCocoaView *cocoaView; DIV_ROUND_UP(bitsPerPixel, 8) * 2, //bitsPerComponent bitsPerPixel, //bitsPerPixel stride, //bytesPerRow -#ifdef __LITTLE_ENDIAN__ - CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB), //colorspace for OS X >= 10.4 - kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst, -#else - CGColorSpaceCreateDeviceRGB(), //colorspace for OS X < 10.4 (actually ppc) - kCGImageAlphaNoneSkipFirst, //bitmapInfo -#endif + CGColorSpaceCreateWithName(kCGColorSpaceSRGB), //colorspace + kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst, //bitmapInfo dataProviderRef, //provider NULL, //decode 0, //interpolate |