aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-w32gdi.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-27 20:22:04 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2014-12-27 20:22:11 -0500
commitec5aa19acf1b768586688dd7c82ee0d64d314b40 (patch)
tree767475829fda9b9856532535e06dcb3ad02a5b32 /src/gamma-w32gdi.c
parentredshift: Add config setting to set gamma separately for day/night (diff)
downloadredshift-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-w32gdi.c')
-rw-r--r--src/gamma-w32gdi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c
index 7193bc9..ee603e6 100644
--- a/src/gamma-w32gdi.c
+++ b/src/gamma-w32gdi.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with Redshift. If not, see <http://www.gnu.org/licenses/>.
- Copyright (c) 2010 Jon Lund Steffensen <jonlst@gmail.com>
+ Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com>
*/
#include <stdio.h>
@@ -129,8 +129,8 @@ w32gdi_restore(w32gdi_state_t *state)
}
int
-w32gdi_set_temperature(w32gdi_state_t *state, int temp, float brightness,
- const float gamma[3])
+w32gdi_set_temperature(w32gdi_state_t *state,
+ const color_setting_t *setting)
{
BOOL r;
@@ -154,7 +154,7 @@ w32gdi_set_temperature(w32gdi_state_t *state, int temp, float brightness,
WORD *gamma_b = &gamma_ramps[2*GAMMA_RAMP_SIZE];
colorramp_fill(gamma_r, gamma_g, gamma_b, GAMMA_RAMP_SIZE,
- temp, brightness, gamma);
+ setting);
/* Set new gamma ramps */
r = SetDeviceGammaRamp(hDC, gamma_ramps);