aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-vidmode.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-21 16:50:15 +0100
committerMattias Andrée <m@maandree.se>2025-03-21 16:50:15 +0100
commit96a6575e23b5baebcdd38269b80f47cc02a2627e (patch)
tree0561580306c882e0e7a4f76c542130bb7ee44537 /src/gamma-vidmode.c
parentRefactor (diff)
downloadredshift-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-vidmode.c')
-rw-r--r--src/gamma-vidmode.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gamma-vidmode.c b/src/gamma-vidmode.c
index a855914..7c5321a 100644
--- a/src/gamma-vidmode.c
+++ b/src/gamma-vidmode.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>
@@ -48,6 +49,7 @@ vidmode_create(struct gamma_state **state_out)
return 0;
}
+
static int
vidmode_start(struct gamma_state *state)
{
@@ -97,6 +99,7 @@ vidmode_start(struct gamma_state *state)
return 0;
}
+
static void
vidmode_free(struct gamma_state *state)
{
@@ -105,6 +108,7 @@ vidmode_free(struct gamma_state *state)
free(state);
}
+
static void
vidmode_print_help(FILE *f)
{
@@ -116,6 +120,7 @@ vidmode_print_help(FILE *f)
fputs("\n", f);
}
+
static int
vidmode_set_option(struct gamma_state *state, const char *key, const char *value)
{
@@ -131,6 +136,7 @@ vidmode_set_option(struct gamma_state *state, const char *key, const char *value
return 0;
}
+
static void
vidmode_restore(struct gamma_state *state)
{
@@ -146,6 +152,7 @@ vidmode_restore(struct gamma_state *state)
weprintf(_("X request failed: %s"), "XF86VidModeSetGammaRamp");
}
+
static int
vidmode_apply(struct gamma_state *state, const struct colour_setting *setting, int preserve)
{
@@ -189,4 +196,4 @@ vidmode_apply(struct gamma_state *state, const struct colour_setting *setting, i
}
-const struct gamma_method vidmode_gamma_method = GAMMA_METHOD_INIT("vidmode", 1, vidmode);
+const struct gamma_method vidmode_gamma_method = GAMMA_METHOD_INIT("vidmode", 1, 0, vidmode);