aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-quartz.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use libgamma to determine available adjustment method configuration optionsMattias Andrée13 days1-19/+6
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Relay on libgamma for selecting adjustment method supportMattias Andrée13 days1-0/+2
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Rewrite gamma-quartz.c to use libgammaMattias Andrée13 days1-157/+7
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* RefactorMattias Andrée2025-03-211-4/+11
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* RefactorMattias Andrée2025-03-161-19/+8
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Major refactoring and some fixesMattias Andrée2025-03-161-6/+5
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* styleMattias Andrée2025-03-081-7/+5
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* miscMattias Andrée2025-03-081-1/+1
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Misc improvementsMattias Andrée2025-03-071-18/+18
| | | | 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-5/+4
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* StyleMattias Andrée2025-03-061-78/+47
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Cleanup and style update (avoid typedef)Mattias Andrée2025-03-051-40/+25
| | | | Signed-off-by: Mattias Andrée <m@maandree.se>
* Merge branch 'coopgamma' of https://github.com/maandree/redshiftMattias Andrée2025-03-051-2/+2
|\
| * Add coopgamma backendMattias Andrée2016-12-191-2/+2
| | | | | | | | Signed-off-by: Mattias Andrée <maandree@kth.se>
* | Change preserve option to command line switchJon Lund Steffensen2017-10-131-17/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes each adjustment method to take a preserve parameter when setting the temperature instead of parsing the preserve option from the command line/configuration file. This helps resolve the issues around #513: - This allows the preserve option to be implemented as a command-line switch (-P). This switch _disables_ the preservation of existing gamma ramps. Having a command-line switch makes it easier to use directly with manual or one-shot mode. - The preserve options is on by default, so continual mode as well as other modes will default to applying the color adjustment on top of the current gamma ramps. - Preserve is always disabled in reset mode so resetting works as expected again.
* | Move module structures out of headersJon Lund Steffensen2017-10-131-0/+13
| |
* | Allocate module data in init functionsJon Lund Steffensen2017-10-131-4/+8
| |
* | Move module struct definitions to separate filesJon Lund Steffensen2017-10-131-8/+20
| |
* | quartz: Fix incorrect use of display identifierJon Lund Steffensen2017-10-121-3/+4
| | | | | | | | | | | | The quartz (macOS) adjustment method incorrectly used the display index instead of the associated CGDirectDisplayID. Incidentally this happened to work too but was incorrect.
* | quartz: Enable preserve by defaultJon Lund Steffensen2017-08-311-1/+1
|/
* quartz: Add preserve option to Quartz methodJon Lund Steffensen2015-01-041-40/+120
| | | | | | | | | | | | This change adds the preserve option to the quartz method which makes it base the temperature adjustments on the existing gamma ramps when set. This requires that the existing gamma ramps are saved at start-up which this commit also adds. One drawback is that the list of displays is enumerated at start-up now which means that Redshift will likely not affect displays that are connected after start-up. This could be fixed in the future by listening to reconfiguration events.
* colorramp: Use supplied gamma ramps as initial valueJon Lund Steffensen2015-01-041-0/+8
| | | | | | | | | 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-7/+6
| | | | | | | | 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.
* Add Quartz (OSX) gamma adjustment methodJon Lund Steffensen2014-12-151-0/+146