aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-drm.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2017-10-11 20:04:29 -0700
committerJon Lund Steffensen <jonlst@gmail.com>2017-10-13 17:53:58 -0700
commit6531b8c73d1eb069e39804167c42948f5f6cd412 (patch)
treecc23f5d236d03473647233a9971765d3888f8f2d /src/gamma-drm.c
parentMerge pull request #536 from jonls/gtk-help-args (diff)
downloadredshift-ng-6531b8c73d1eb069e39804167c42948f5f6cd412.tar.gz
redshift-ng-6531b8c73d1eb069e39804167c42948f5f6cd412.tar.bz2
redshift-ng-6531b8c73d1eb069e39804167c42948f5f6cd412.tar.xz
Move module struct definitions to separate files
Diffstat (limited to 'src/gamma-drm.c')
-rw-r--r--src/gamma-drm.c26
1 files changed, 19 insertions, 7 deletions
diff --git a/src/gamma-drm.c b/src/gamma-drm.c
index c2ac4bd..19f66fd 100644
--- a/src/gamma-drm.c
+++ b/src/gamma-drm.c
@@ -41,7 +41,7 @@
#include "colorramp.h"
-int
+static int
drm_init(drm_state_t *state)
{
/* Initialize state. */
@@ -54,7 +54,7 @@ drm_init(drm_state_t *state)
return 0;
}
-int
+static int
drm_start(drm_state_t *state)
{
/* Acquire access to a graphics card. */
@@ -172,7 +172,7 @@ drm_start(drm_state_t *state)
return 0;
}
-void
+static void
drm_restore(drm_state_t *state)
{
drm_crtc_state_t *crtcs = state->crtcs;
@@ -185,7 +185,7 @@ drm_restore(drm_state_t *state)
}
}
-void
+static void
drm_free(drm_state_t *state)
{
if (state->crtcs != NULL) {
@@ -208,7 +208,7 @@ drm_free(drm_state_t *state)
}
}
-void
+static void
drm_print_help(FILE *f)
{
fputs(_("Adjust gamma ramps with Direct Rendering Manager.\n"), f);
@@ -221,7 +221,7 @@ drm_print_help(FILE *f)
fputs("\n", f);
}
-int
+static int
drm_set_option(drm_state_t *state, const char *key, const char *value)
{
if (strcasecmp(key, "card") == 0) {
@@ -240,7 +240,7 @@ drm_set_option(drm_state_t *state, const char *key, const char *value)
return 0;
}
-int
+static int
drm_set_temperature(drm_state_t *state, const color_setting_t *setting)
{
drm_crtc_state_t *crtcs = state->crtcs;
@@ -288,3 +288,15 @@ drm_set_temperature(drm_state_t *state, const color_setting_t *setting)
return 0;
}
+
+
+const gamma_method_t drm_gamma_method = {
+ "drm", 0,
+ (gamma_method_init_func *)drm_init,
+ (gamma_method_start_func *)drm_start,
+ (gamma_method_free_func *)drm_free,
+ (gamma_method_print_help_func *)drm_print_help,
+ (gamma_method_set_option_func *)drm_set_option,
+ (gamma_method_restore_func *)drm_restore,
+ (gamma_method_set_temperature_func *)drm_set_temperature
+};