aboutsummaryrefslogtreecommitdiffstats
path: root/main.m
blob: 5cc0ad02efb1e473ad6176747d57b0c44f914fef (plain)
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;
}