From e2c3169a119e9c292ade407ae43fa456f7264b0d Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Fri, 23 Dec 2016 22:49:37 -0400 Subject: [PATCH] Mac: back out commit e5b39f4935c8. It causes significant overhead on many GPUs. --- src/video/cocoa/SDL_cocoawindow.m | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/video/cocoa/SDL_cocoawindow.m b/src/video/cocoa/SDL_cocoawindow.m index 6f60c5920..f705a6c47 100644 --- a/src/video/cocoa/SDL_cocoawindow.m +++ b/src/video/cocoa/SDL_cocoawindow.m @@ -1276,13 +1276,6 @@ 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]];