diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 15:08:45 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 15:08:45 +0100 |
commit | 1ea4a4d1968b767912e70e18be8f0e1e22bf9c6f (patch) | |
tree | fdb5e2eb1fb03aa672281130ef71c579a262e81a /src/gamma-w32gdi.c | |
parent | Update documentation reflect that the drm method now supports CRTC list (diff) | |
download | redshift-ng-1ea4a4d1968b767912e70e18be8f0e1e22bf9c6f.tar.gz redshift-ng-1ea4a4d1968b767912e70e18be8f0e1e22bf9c6f.tar.bz2 redshift-ng-1ea4a4d1968b767912e70e18be8f0e1e22bf9c6f.tar.xz |
Use libgamma to determine available adjustment method configuration options
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-w32gdi.c')
-rw-r--r-- | src/gamma-w32gdi.c | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c index d06f6b1..a09f768 100644 --- a/src/gamma-w32gdi.c +++ b/src/gamma-w32gdi.c @@ -32,26 +32,13 @@ w32gdi_print_help(FILE *f) { fputs(_("Adjust gamma ramps with the Windows GDI.\n"), f); fputs("\n", f); + direct_print_help(f, LIBGAMMA_METHOD_W32_GDI); } -static int -w32gdi_set_option(struct gamma_state *state, const char *key, const char *value) -{ - (void) state; - (void) value; - if (!strcasecmp(key, "preserve")) { - weprintf(_("Deprecated method parameter ignored: `%s'."), key); - return 0; - } else { - weprintf(_("Unknown method parameter: `%s'."), key); - return -1; - } -} - - -#define w32gdi_start direct_start -#define w32gdi_apply direct_apply -#define w32gdi_restore direct_restore -#define w32gdi_free direct_free +#define w32gdi_set_option direct_set_option +#define w32gdi_start direct_start +#define w32gdi_apply direct_apply +#define w32gdi_restore direct_restore +#define w32gdi_free direct_free const struct gamma_method w32gdi_gamma_method = GAMMA_METHOD_INIT("wingdi", 1, 0, w32gdi); |