aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-23 14:42:29 +0100
committerMattias Andrée <m@maandree.se>2025-03-23 14:42:29 +0100
commit7fa55936625695321d29f3e9570a78b407627087 (patch)
tree8678ea80f48dd20d461a066c9afa183ec52c5d54 /src/gamma.c
parentRewrite gamma-drm.c to use libgamma (diff)
downloadredshift-ng-7fa55936625695321d29f3e9570a78b407627087.tar.gz
redshift-ng-7fa55936625695321d29f3e9570a78b407627087.tar.bz2
redshift-ng-7fa55936625695321d29f3e9570a78b407627087.tar.xz
Relay on libgamma for selecting adjustment method support
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma.c')
-rw-r--r--src/gamma.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gamma.c b/src/gamma.c
index 5b64f8c..1d21a06 100644
--- a/src/gamma.c
+++ b/src/gamma.c
@@ -24,21 +24,11 @@ const struct gamma_method *gamma_methods[] = {
#ifdef ENABLE_COOPGAMMA
&coopgamma_gamma_method,
#endif
-#ifdef ENABLE_DRM
&drm_gamma_method,
-#endif
-#ifdef ENABLE_RANDR
&randr_gamma_method,
-#endif
-#ifdef ENABLE_VIDMODE
&vidmode_gamma_method,
-#endif
-#ifdef ENABLE_QUARTZ
&quartz_gamma_method,
-#endif
-#ifdef ENABLE_WINGDI
&w32gdi_gamma_method,
-#endif
&dummy_gamma_method,
NULL
};