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-randr.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-randr.h')
-rw-r--r-- | src/gamma-randr.h | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/src/gamma-randr.h b/src/gamma-randr.h index a44205d..0545d2f 100644 --- a/src/gamma-randr.h +++ b/src/gamma-randr.h @@ -14,41 +14,14 @@ You should have received a copy of the GNU General Public License along with Redshift. If not, see <http://www.gnu.org/licenses/>. - Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com> + Copyright (c) 2010-2017 Jon Lund Steffensen <jonlst@gmail.com> */ #ifndef REDSHIFT_GAMMA_RANDR_H #define REDSHIFT_GAMMA_RANDR_H -#include <stdio.h> -#include <stdint.h> - -#include <xcb/xcb.h> -#include <xcb/randr.h> - #include "redshift.h" - -typedef struct { - xcb_randr_crtc_t crtc; - unsigned int ramp_size; - uint16_t *saved_ramps; -} randr_crtc_state_t; - -typedef struct { - xcb_connection_t *conn; - xcb_screen_t *screen; - int preferred_screen; - int preserve; - int screen_num; - int crtc_num_count; - int* crtc_num; - unsigned int crtc_count; - randr_crtc_state_t *crtcs; -} randr_state_t; - - extern const gamma_method_t randr_gamma_method; - #endif /* ! REDSHIFT_GAMMA_RANDR_H */ |