diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-16 14:45:03 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-16 15:58:16 +0100 |
commit | b55234a74d17503ca2fecb273cfcc44549f9e43e (patch) | |
tree | 321ef06dec317ff0e92011e1d680965e058b10fc /src/gamma-w32gdi.c | |
parent | Unlist redshift/issues/846: rejected on technical grounds (diff) | |
download | redshift-ng-b55234a74d17503ca2fecb273cfcc44549f9e43e.tar.gz redshift-ng-b55234a74d17503ca2fecb273cfcc44549f9e43e.tar.bz2 redshift-ng-b55234a74d17503ca2fecb273cfcc44549f9e43e.tar.xz |
Major refactoring and some fixes
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-w32gdi.c')
-rw-r--r-- | src/gamma-w32gdi.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c index bc6326c..e216a23 100644 --- a/src/gamma-w32gdi.c +++ b/src/gamma-w32gdi.c @@ -1,5 +1,7 @@ -/* gamma-w32gdi.c -- Windows GDI gamma adjustment source - * This file is part of redshift-ng. +/* redshift-ng - Automatically adjust display colour temperature according the Sun + * + * Copyright (c) 2009-2018 Jon Lund Steffensen <jonlst@gmail.com> + * Copyright (c) 2014-2016, 2025 Mattias Andrée <m@maandree.se> * * redshift-ng is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,9 +15,6 @@ * * You should have received a copy of the GNU General Public License * along with redshift-ng. If not, see <http://www.gnu.org/licenses/>. - * - * Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> - * Copyright (c) 2025 Mattias Andrée <m@maandree.se> */ #ifndef WINVER # define WINVER 0x0500 @@ -168,7 +167,7 @@ w32gdi_set_temperature( } } - colourramp_fill_u16(gamma_r, gamma_g, gamma_b, GAMMA_RAMP_SIZE, GAMMA_RAMP_SIZE, GAMMA_RAMP_SIZE, setting); + fill_ramps_u16(gamma_r, gamma_g, gamma_b, GAMMA_RAMP_SIZE, GAMMA_RAMP_SIZE, GAMMA_RAMP_SIZE, setting); /* Set new gamma ramps */ for (i = 0; i < MAX_ATTEMPTS; i++) { |