diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2013-10-21 22:30:09 -0400 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2013-10-21 22:52:38 -0400 |
commit | 070bf1d3de78c208cbb8a393b08396bbd867e903 (patch) | |
tree | a7da088ca083a3db923494a9b87b0846572ea57b /src/redshift.c | |
parent | Update HACKING document (diff) | |
download | redshift-ng-070bf1d3de78c208cbb8a393b08396bbd867e903.tar.gz redshift-ng-070bf1d3de78c208cbb8a393b08396bbd867e903.tar.bz2 redshift-ng-070bf1d3de78c208cbb8a393b08396bbd867e903.tar.xz |
colorramp: Use new color ramp table provided by Ingo Thies.
This table is calculated by the actual Planckian locus below 5000K, and by CIE daylight standard above 5000K.
Also, the new table applies proper gamma correction according to sRGB.
More information can be found in README-colorramp.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/redshift.c b/src/redshift.c index 1edfd86..d7e9b37 100644 --- a/src/redshift.c +++ b/src/redshift.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) 2011 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2013 Jon Lund Steffensen <jonlst@gmail.com> */ #ifdef HAVE_CONFIG_H @@ -200,7 +200,7 @@ static const location_provider_t location_providers[] = { #define MIN_LON -180.0 #define MAX_LON 180.0 #define MIN_TEMP 1000 -#define MAX_TEMP 10000 +#define MAX_TEMP 25000 #define MIN_BRIGHTNESS 0.1 #define MAX_BRIGHTNESS 1.0 #define MIN_GAMMA 0.1 @@ -208,7 +208,7 @@ static const location_provider_t location_providers[] = { /* Default values for parameters. */ #define DEFAULT_DAY_TEMP 5500 -#define DEFAULT_NIGHT_TEMP 3700 +#define DEFAULT_NIGHT_TEMP 3500 #define DEFAULT_BRIGHTNESS 1.0 #define DEFAULT_GAMMA 1.0 @@ -996,7 +996,7 @@ main(int argc, char *argv[]) } /* Color temperature at daytime */ - if (temp_day < MIN_TEMP || temp_day >= MAX_TEMP) { + if (temp_day < MIN_TEMP || temp_day > MAX_TEMP) { fprintf(stderr, _("Temperature must be between %uK and %uK.\n"), MIN_TEMP, MAX_TEMP); @@ -1004,7 +1004,7 @@ main(int argc, char *argv[]) } /* Color temperature at night */ - if (temp_night < MIN_TEMP || temp_night >= MAX_TEMP) { + if (temp_night < MIN_TEMP || temp_night > MAX_TEMP) { fprintf(stderr, _("Temperature must be between %uK and %uK.\n"), MIN_TEMP, MAX_TEMP); @@ -1014,7 +1014,7 @@ main(int argc, char *argv[]) if (mode == PROGRAM_MODE_MANUAL) { /* Check color temperature to be set */ - if (temp_set < MIN_TEMP || temp_set >= MAX_TEMP) { + if (temp_set < MIN_TEMP || temp_set > MAX_TEMP) { fprintf(stderr, _("Temperature must be between %uK and %uK.\n"), MIN_TEMP, MAX_TEMP); |