From 1ea4a4d1968b767912e70e18be8f0e1e22bf9c6f Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 23 Mar 2025 15:08:45 +0100 Subject: Use libgamma to determine available adjustment method configuration options MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/gamma-w32gdi.c | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) (limited to 'src/gamma-w32gdi.c') 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); -- cgit v1.2.3-70-g09d2