1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#import <CoreGraphics/CoreGraphics.h> int main(int argc, const char * argv[]) { const CGGammaValue gamma[2] = {1, 0}; const CGGammaValue two[2] = {1, 0}; const CGGammaValue three[2] = {0, 1}; CGSetDisplayTransferByTable( CGMainDisplayID(), 2, gamma, gamma, gamma ); sleep(5); return 0; }