diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-21 16:50:15 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-21 16:50:15 +0100 |
commit | 96a6575e23b5baebcdd38269b80f47cc02a2627e (patch) | |
tree | 0561580306c882e0e7a4f76c542130bb7ee44537 /src/gamma.c | |
parent | Refactor (diff) | |
download | redshift-ng-96a6575e23b5baebcdd38269b80f47cc02a2627e.tar.gz redshift-ng-96a6575e23b5baebcdd38269b80f47cc02a2627e.tar.bz2 redshift-ng-96a6575e23b5baebcdd38269b80f47cc02a2627e.tar.xz |
Refactor
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma.c')
-rw-r--r-- | src/gamma.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/gamma.c b/src/gamma.c index 628105b..5b64f8c 100644 --- a/src/gamma.c +++ b/src/gamma.c @@ -1,4 +1,5 @@ -/* redshift-ng - Automatically adjust display colour temperature according the Sun +/*- + * 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> @@ -43,6 +44,15 @@ const struct gamma_method *gamma_methods[] = { }; +/** + * Attempt to start a specific adjustment method + * + * @param method The adjustment method + * @param state_out Output parameter for the adjustment method state + * @param config Loaded information file + * @param args `NULL` or option part of the command line argument for the adjustment method + * @return 0 on success, -1 on failure + */ static int try_start(const struct gamma_method *method, GAMMA_STATE **state_out, struct config_ini_state *config, char *args) { |