diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-27 20:22:04 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-27 20:22:11 -0500 |
commit | ec5aa19acf1b768586688dd7c82ee0d64d314b40 (patch) | |
tree | 767475829fda9b9856532535e06dcb3ad02a5b32 /src/gamma-drm.h | |
parent | redshift: Add config setting to set gamma separately for day/night (diff) | |
download | redshift-ng-ec5aa19acf1b768586688dd7c82ee0d64d314b40.tar.gz redshift-ng-ec5aa19acf1b768586688dd7c82ee0d64d314b40.tar.bz2 redshift-ng-ec5aa19acf1b768586688dd7c82ee0d64d314b40.tar.xz |
redshift: Simplify set_temperature by passing color_setting_t
Changes all set_temperature function in gamma adjustment methods
to take a color_setting_t pointer with the color settings.
Colorramp functions are similarly changed to take a color settings
struct.
Diffstat (limited to 'src/gamma-drm.h')
-rw-r--r-- | src/gamma-drm.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gamma-drm.h b/src/gamma-drm.h index f4c0df5..ae97d00 100644 --- a/src/gamma-drm.h +++ b/src/gamma-drm.h @@ -25,6 +25,8 @@ #include <xf86drm.h> #include <xf86drmMode.h> +#include "redshift.h" + typedef struct { int crtc_num; @@ -52,7 +54,8 @@ void drm_print_help(FILE *f); int drm_set_option(drm_state_t *state, const char *key, const char *value); void drm_restore(drm_state_t *state); -int drm_set_temperature(drm_state_t *state, int temp, float brightness, const float gamma[3]); +int drm_set_temperature(drm_state_t *state, + const color_setting_t *setting); #endif /* ! REDSHIFT_GAMMA_DRM_H */ |