diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 16:39:17 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 16:39:17 +0100 |
commit | 7b15478612e981937a06a709d99b40d71abd6c20 (patch) | |
tree | 35177bbf38ed77d96d62d6b1e47c1d4ec15edf6f /src/common.h | |
parent | add display option + update doc about all screens being the default (diff) | |
download | redshift-ng-7b15478612e981937a06a709d99b40d71abd6c20.tar.gz redshift-ng-7b15478612e981937a06a709d99b40d71abd6c20.tar.bz2 redshift-ng-7b15478612e981937a06a709d99b40d71abd6c20.tar.xz |
Restore support for preserve-gamma, with corrected order of application
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index dc0312b..e6e1339 100644 --- a/src/common.h +++ b/src/common.h @@ -1327,12 +1327,19 @@ int colour_setting_diff_is_major(const struct colour_setting *a, const struct co * @param gamma_r The gamma ramp for the red channel * @param gamma_g The gamma ramp for the green channel * @param gamma_b The gamma ramp for the blue channel + * @param saved_r Saved gamma ramp with calibrations for + * the red channel to preserve, or `NULL` + * @param saved_g Saved gamma ramp with calibrations for + * the green channel to preserve, or `NULL` + * @param saved_b Saved gamma ramp with calibrations for + * the blue channel to preserve, or `NULL` * @param size_r The number of stops in `gamma_r` * @param size_g The number of stops in `gamma_g` * @param size_b The number of stops in `gamma_b` * @param settings The colour settings to apply (temperature, brightness, gamma) */\ void fill_ramps_##SUFFIX(TYPE *gamma_r, TYPE *gamma_g, TYPE *gamma_b,\ + const TYPE *saved_r, const TYPE *saved_g, const TYPE *saved_b,\ size_t size_r, size_t size_g, size_t size_b,\ const struct colour_setting *setting) LIST_RAMPS_STOP_VALUE_TYPES(X, ;); |