aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.h
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-27 19:38:25 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2014-12-27 19:43:05 -0500
commit4ac4d9ee2df567e26c374493d2407a894672faeb (patch)
treee1f210dcffa5178a0a854ba622c4e9cc3d11992c /src/redshift.h
parentredshift: Use double for interpolation function (diff)
downloadredshift-ng-4ac4d9ee2df567e26c374493d2407a894672faeb.tar.gz
redshift-ng-4ac4d9ee2df567e26c374493d2407a894672faeb.tar.bz2
redshift-ng-4ac4d9ee2df567e26c374493d2407a894672faeb.tar.xz
redshift: Move color settings into struct for period
Move color settings (temperature, gamma and brightness) into a struct for each period (day, night). Change the interpolation function to interpolate all values between these structs.
Diffstat (limited to 'src/redshift.h')
-rw-r--r--src/redshift.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/redshift.h b/src/redshift.h
index 3a87877..7e38c42 100644
--- a/src/redshift.h
+++ b/src/redshift.h
@@ -24,6 +24,14 @@
#include <stdlib.h>
+/* Color setting */
+typedef struct {
+ int temperature;
+ float gamma[3];
+ float brightness;
+} color_setting_t;
+
+
/* Gamma adjustment method */
typedef int gamma_method_init_func(void *state);
typedef int gamma_method_start_func(void *state);