aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-randr.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-28 22:58:54 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2015-01-04 16:34:33 -0500
commit9b299132ef8912910df5a90b1628cc3af1efc54d (patch)
treec72a130835c069e060b24781675cee8b5dd531e2 /src/gamma-randr.c
parentredshift: Add gamma_is_valid function to check gamma (diff)
downloadredshift-ng-9b299132ef8912910df5a90b1628cc3af1efc54d.tar.gz
redshift-ng-9b299132ef8912910df5a90b1628cc3af1efc54d.tar.bz2
redshift-ng-9b299132ef8912910df5a90b1628cc3af1efc54d.tar.xz
colorramp: Use supplied gamma ramps as initial value
This changes colorramp_fill() to base the ramp calculations on the existing values in the supplied tables, instead of basing it on a pure `i/size` value computed on the fly. All gamma adjustment methods are changed to explicitly initialize the ramps to the `i/size` value before calls to colorramp_fill().
Diffstat (limited to 'src/gamma-randr.c')
-rw-r--r--src/gamma-randr.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gamma-randr.c b/src/gamma-randr.c
index 4f6b0f0..5ef7a4f 100644
--- a/src/gamma-randr.c
+++ b/src/gamma-randr.c
@@ -327,6 +327,14 @@ randr_set_temperature_for_crtc(randr_state_t *state, int crtc_num,
uint16_t *gamma_g = &gamma_ramps[1*ramp_size];
uint16_t *gamma_b = &gamma_ramps[2*ramp_size];
+ /* Initialize gamma ramps to pure state */
+ for (int i = 0; i < ramp_size; i++) {
+ uint16_t value = (double)i/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, ramp_size,
setting);