Mac: Fix over-saturated colors on P3 displays (e.g. the 2016 MBPs).

This commit is contained in:
Alex Szpakowski 2016-12-23 22:08:18 -04:00
parent 3e9284519a
commit d719374cb9
1 changed files with 7 additions and 0 deletions

View File

@ -1276,6 +1276,13 @@ Cocoa_CreateWindow(_THIS, SDL_Window * window)
[nswindow setContentView:contentView];
[contentView release];
/* The app's content is likely authored expecting sRGB output. If we don't
* specify the window's color space, it will default to the device color
* space, which will be P3 on capable displays. The mismatch causes the
* content authored in sRGB to appear extremely saturated on the P3 display.
*/
[nswindow setColorSpace:[NSColorSpace sRGBColorSpace]];
/* Allow files and folders to be dragged onto the window by users */
[nswindow registerForDraggedTypes:[NSArray arrayWithObject:(NSString *)kUTTypeFileURL]];