aboutsummaryrefslogtreecommitdiffstats
path: root/src/colorramp.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update LIST_RAMPS_STOP_VALUE_TYPES macro to reflect eariler changes in colorramp.cMattias Andrée2025-03-071-1/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Misc improvementsMattias Andrée2025-03-071-20/+20
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Update redshift to redshift-ngMattias Andrée2025-03-061-4/+4
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* style and some minor fixesMattias Andrée2025-03-061-1/+0
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* StyleMattias Andrée2025-03-061-6/+36
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Nicer X macrosMattias Andrée2025-03-051-2/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Cleanup and style update (avoid typedef)Mattias Andrée2025-03-051-8/+2
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Unify header files (so far most)Mattias Andrée2025-03-051-3/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Use colour temperature table from libredMattias Andrée2025-03-051-275/+11
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Add coopgamma backendMattias Andrée2016-12-191-35/+22
| | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* colorramp: Use supplied gamma ramps as initial valueJon Lund Steffensen2015-01-041-6/+9
| | | | | | | | | This changes colorramp_fill() to base the ramp calculations on the existing values in the supplied tables, instead of basing it on a pure `i/size` value computed on the fly. All gamma adjustment methods are changed to explicitly initialize the ramps to the `i/size` value before calls to colorramp_fill().
* redshift: Simplify set_temperature by passing color_setting_tJon Lund Steffensen2014-12-271-8/+9
| | | | | | | | 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.
* colorramp: Add float-typed colorramp_fill() equivalentJon Lund Steffensen2014-12-151-3/+25
|
* Apply gamma after brightness and termperatureMattias Andrée2014-03-181-6/+5
| | | | Signed-off-by: Mattias Andrée <maandree@operamail.com>
* Constify gamma parameter to set_temperature() methodsJon Lund Steffensen2013-12-091-1/+1
|
* colorramp: Use new color ramp table provided by Ingo Thies.Jon Lund Steffensen2013-10-211-94/+248
| | | | | | 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.
* colorramp: Fix slight flicker caused by improper scaling of gamma ramp valuesJon Lund Steffensen2013-10-211-3/+3
| | | | | Values generated by colorramp_fill() will be a maximum of i * 256 - 1, due to the use of UINT16_MAX. Simplest fix ought to be using (UINT16_MAX+1), which is safe, as the maximum value (255 * 256) still fits in a uint16. (Thanks to Sean Hildebrand)
* Allow brightness to be adjusted (between 10% and 100%, the latter being the default).Jon Lund Steffensen2011-04-211-4/+4
|
* Change comment in colorramp.c.Jon Lund Steffensen2010-06-211-1/+1
|
* Don't include gettext headers when NLS is disabled.Jon Lund Steffensen2010-05-241-2/+0
|
* Add gettext support in redshift.Jon Lund Steffensen2010-02-021-1/+1
|
* Move source and headers to src dir.Jon Lund Steffensen2009-12-231-0/+150