diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-11 20:57:29 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-13 18:12:43 -0700 |
commit | 1d29f92349843851d26cc453598cbe3a3f4fd5f1 (patch) | |
tree | 4bc99decf721bdee01045744024fad38f49d09b3 /src/gamma-drm.c | |
parent | Allocate module data in init functions (diff) | |
download | redshift-ng-1d29f92349843851d26cc453598cbe3a3f4fd5f1.tar.gz redshift-ng-1d29f92349843851d26cc453598cbe3a3f4fd5f1.tar.bz2 redshift-ng-1d29f92349843851d26cc453598cbe3a3f4fd5f1.tar.xz |
Move module structures out of headers
Diffstat (limited to 'src/gamma-drm.c')
-rw-r--r-- | src/gamma-drm.c | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/src/gamma-drm.c b/src/gamma-drm.c index e706d46..67f819e 100644 --- a/src/gamma-drm.c +++ b/src/gamma-drm.c @@ -38,19 +38,40 @@ #define O_CLOEXEC 02000000 #endif +#include <xf86drm.h> +#include <xf86drmMode.h> + #include "gamma-drm.h" #include "colorramp.h" +typedef struct { + int crtc_num; + int crtc_id; + int gamma_size; + uint16_t* r_gamma; + uint16_t* g_gamma; + uint16_t* b_gamma; +} drm_crtc_state_t; + +typedef struct { + int card_num; + int crtc_num; + int fd; + drmModeRes* res; + drm_crtc_state_t* crtcs; +} drm_state_t; + + static int drm_init(drm_state_t **state) { /* Initialize state. */ - *state = malloc(sizeof(drm_state_t)); - if (*state == NULL) return -1; + *state = malloc(sizeof(drm_state_t)); + if (*state == NULL) return -1; - drm_state_t *s = *state; - s->card_num = 0; + drm_state_t *s = *state; + s->card_num = 0; s->crtc_num = -1; s->fd = -1; s->res = NULL; @@ -212,7 +233,7 @@ drm_free(drm_state_t *state) state->fd = -1; } - free(state); + free(state); } static void |