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-randr.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-randr.c')
-rw-r--r-- | src/gamma-randr.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/gamma-randr.c b/src/gamma-randr.c index 561a243..10ea277 100644 --- a/src/gamma-randr.c +++ b/src/gamma-randr.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> @@ -35,6 +36,7 @@ struct randr_crtc_state { uint16_t *saved_ramps; }; + struct gamma_state { xcb_connection_t *conn; xcb_screen_t *screen; @@ -97,6 +99,7 @@ fail: return -1; } + static int randr_start(struct gamma_state *state) { @@ -208,6 +211,7 @@ randr_start(struct gamma_state *state) return 0; } + static void randr_restore(struct gamma_state *state) { @@ -237,6 +241,7 @@ randr_restore(struct gamma_state *state) } } + static void randr_free(struct gamma_state *state) { @@ -254,6 +259,7 @@ randr_free(struct gamma_state *state) free(state); } + static void randr_print_help(FILE *f) { @@ -269,6 +275,7 @@ randr_print_help(FILE *f) fputs("\n", f); } + static int randr_set_option(struct gamma_state *state, const char *key, const char *value) { @@ -322,6 +329,7 @@ randr_set_option(struct gamma_state *state, const char *key, const char *value) return 0; } + static int randr_apply_for_crtc(struct gamma_state *state, int crtc_num, const struct colour_setting *setting, int preserve) { @@ -381,6 +389,7 @@ randr_apply_for_crtc(struct gamma_state *state, int crtc_num, const struct colou return 0; } + static int randr_apply(struct gamma_state *state, const struct colour_setting *setting, int preserve) { @@ -401,4 +410,4 @@ randr_apply(struct gamma_state *state, const struct colour_setting *setting, int } -const struct gamma_method randr_gamma_method = GAMMA_METHOD_INIT("randr", 1, randr); +const struct gamma_method randr_gamma_method = GAMMA_METHOD_INIT("randr", 1, 0, randr); |