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.h | |
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.h')
-rw-r--r-- | src/gamma-drm.h | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/src/gamma-drm.h b/src/gamma-drm.h index 6f63413..21ba5c2 100644 --- a/src/gamma-drm.h +++ b/src/gamma-drm.h @@ -15,37 +15,14 @@ along with Redshift. If not, see <http://www.gnu.org/licenses/>. Copyright (c) 2014 Mattias Andrée <maandree@member.fsf.org> + Copyright (c) 2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_DRM_H #define REDSHIFT_GAMMA_DRM_H -#include <stdint.h> - -#include <xf86drm.h> -#include <xf86drmMode.h> - #include "redshift.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; - - extern const gamma_method_t drm_gamma_method; #endif /* ! REDSHIFT_GAMMA_DRM_H */ |