diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 23:49:36 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 16:34:33 -0500 |
commit | d32314f8ccfa706e9f46d052952af2b43be3f5a0 (patch) | |
tree | 17fd091dd642b0d8c17e64401e87f0285ec9052d /src/gamma-quartz.h | |
parent | randr: Add preserve option to RandR method (diff) | |
download | redshift-ng-d32314f8ccfa706e9f46d052952af2b43be3f5a0.tar.gz redshift-ng-d32314f8ccfa706e9f46d052952af2b43be3f5a0.tar.bz2 redshift-ng-d32314f8ccfa706e9f46d052952af2b43be3f5a0.tar.xz |
quartz: Add preserve option to Quartz method
This change adds the preserve option to the quartz method which makes it
base the temperature adjustments on the existing gamma ramps when set. This
requires that the existing gamma ramps are saved at start-up which this
commit also adds.
One drawback is that the list of displays is enumerated at start-up now which
means that Redshift will likely not affect displays that are connected after
start-up. This could be fixed in the future by listening to reconfiguration
events.
Diffstat (limited to 'src/gamma-quartz.h')
-rw-r--r-- | src/gamma-quartz.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/gamma-quartz.h b/src/gamma-quartz.h index b5bc213..cd29d54 100644 --- a/src/gamma-quartz.h +++ b/src/gamma-quartz.h @@ -20,11 +20,23 @@ #ifndef REDSHIFT_GAMMA_QUARTZ_H #define REDSHIFT_GAMMA_QUARTZ_H +#include <stdint.h> + +#include <ApplicationServices/ApplicationServices.h> + #include "redshift.h" typedef struct { - int dummy; + CGDirectDisplayID display; + uint32_t ramp_size; + float *saved_ramps; +} quartz_display_state_t; + +typedef struct { + quartz_display_state_t *displays; + uint32_t display_count; + int preserve; } quartz_state_t; |