diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-29 00:53:50 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 16:34:33 -0500 |
commit | aaf455c9ae42e2a75f1aa746134161206f0bc9b2 (patch) | |
tree | 6505ef2fb1f9cb420419f87cd9f2ea24a9fc90e0 /src/gamma-vidmode.c | |
parent | quartz: Add preserve option to Quartz method (diff) | |
download | redshift-ng-aaf455c9ae42e2a75f1aa746134161206f0bc9b2.tar.gz redshift-ng-aaf455c9ae42e2a75f1aa746134161206f0bc9b2.tar.bz2 redshift-ng-aaf455c9ae42e2a75f1aa746134161206f0bc9b2.tar.xz |
vidmode: Add preserve option to VidMode method
Diffstat (limited to 'src/gamma-vidmode.c')
-rw-r--r-- | src/gamma-vidmode.c | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/src/gamma-vidmode.c b/src/gamma-vidmode.c index a25b06e..254d065 100644 --- a/src/gamma-vidmode.c +++ b/src/gamma-vidmode.c @@ -43,6 +43,8 @@ vidmode_init(vidmode_state_t *state) state->screen_num = -1; state->saved_ramps = NULL; + state->preserve = 0; + /* Open display */ state->display = XOpenDisplay(NULL); if (state->display == NULL) { @@ -129,7 +131,10 @@ vidmode_print_help(FILE *f) /* TRANSLATORS: VidMode help output left column must not be translated */ - fputs(_(" screen=N\tX screen to apply adjustments to\n"), f); + fputs(_(" screen=N\t\tX screen to apply adjustments to\n" + " preserve={0,1}\tWhether existing gamma should be" + " preserved\n"), + f); fputs("\n", f); } @@ -138,6 +143,8 @@ vidmode_set_option(vidmode_state_t *state, const char *key, const char *value) { if (strcasecmp(key, "screen") == 0) { state->screen_num = atoi(value); + } else if (strcasecmp(key, "preserve") == 0) { + state->preserve = atoi(value); } else { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; @@ -180,12 +187,19 @@ vidmode_set_temperature(vidmode_state_t *state, uint16_t *gamma_g = &gamma_ramps[1*state->ramp_size]; uint16_t *gamma_b = &gamma_ramps[2*state->ramp_size]; - /* Initialize gamma ramps to pure state */ - for (int i = 0; i < state->ramp_size; i++) { - uint16_t value = (double)i/state->ramp_size * (UINT16_MAX+1); - gamma_r[i] = value; - gamma_g[i] = value; - gamma_b[i] = value; + if (state->preserve) { + /* Initialize gamma ramps from saved state */ + memcpy(gamma_ramps, state->saved_ramps, + 3*state->ramp_size*sizeof(uint16_t)); + } else { + /* Initialize gamma ramps to pure state */ + for (int i = 0; i < state->ramp_size; i++) { + uint16_t value = (double)i/state->ramp_size * + (UINT16_MAX+1); + gamma_r[i] = value; + gamma_g[i] = value; + gamma_b[i] = value; + } } colorramp_fill(gamma_r, gamma_g, gamma_b, state->ramp_size, |