diff options
author | Mattias Andrée <maandree@kth.se> | 2024-07-17 21:07:37 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-07-17 21:07:37 +0200 |
commit | 57398cc26d66ec78cc65d4e9b23d0519406ff4e8 (patch) | |
tree | ece7d8b9b2a2837ec7a9d675b7e14641689e35fc /libgamma-method.hh | |
parent | Empty signed commit (diff) | |
download | libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.gz libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.bz2 libgammamm-57398cc26d66ec78cc65d4e9b23d0519406ff4e8.tar.xz |
Update for libgamma 0.7.41.0.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libgamma-method.hh')
-rw-r--r-- | libgamma-method.hh | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libgamma-method.hh b/libgamma-method.hh index 4f9339d..26c3f04 100644 --- a/libgamma-method.hh +++ b/libgamma-method.hh @@ -72,7 +72,7 @@ namespace libgamma * * @param caps The information in the native structure */ - MethodCapabilities(libgamma_method_capabilities_t *caps); + MethodCapabilities(const struct libgamma_method_capabilities *caps); /** * Copy constructor @@ -95,7 +95,7 @@ namespace libgamma /** - * OR of the CRTC information fields in `libgamma_crtc_information_t` + * OR of the CRTC information fields in `libgamma_crtc_information` * that may (but can fail) be read successfully */ int32_t crtc_information; @@ -146,20 +146,20 @@ namespace libgamma /** * Whether the `red_gamma_size`, `green_gamma_size` and `blue_gamma_size` - * fields in `libgamma_crtc_information_t` will always have the same + * fields in `libgamma_crtc_information` will always have the same * values as each other for the adjustment method */ bool identical_gamma_sizes; /** * Whether the `red_gamma_size`, `green_gamma_size` and `blue_gamma_size` - * fields in `libgamma_crtc_information_t` will always be filled with the + * fields in `libgamma_crtc_information` will always be filled with the * same value for the adjustment method */ bool fixed_gamma_size; /** - * Whether the `gamma_depth` field in `libgamma_crtc_information_t` + * Whether the `gamma_depth` field in `libgamma_crtc_information` * will always be filled with the same value for the adjustment method */ bool fixed_gamma_depth; @@ -179,13 +179,13 @@ namespace libgamma /** * Types for connectors */ - typedef libgamma_connector_type_t ConnectorType; + typedef libgamma_connector_type ConnectorType; /** * Orders for subpixels; currently the possible values are * very biased to LCD, Plasma and monochrome monitors */ - typedef libgamma_subpixel_order_t SubpixelOrder; + typedef libgamma_subpixel_order SubpixelOrder; /** @@ -204,7 +204,7 @@ namespace libgamma * * @param info The information in the native structure */ - CRTCInformation(libgamma_crtc_information_t *info); + CRTCInformation(libgamma_crtc_information *info); /** * Copy constructor @@ -675,7 +675,7 @@ namespace libgamma /** * The state in the native structure */ - libgamma_site_state_t *native; + libgamma_site_state *native; }; @@ -738,7 +738,7 @@ namespace libgamma /** * The state in the native structure */ - libgamma_partition_state_t *native; + libgamma_partition_state *native; }; @@ -786,7 +786,7 @@ namespace libgamma bool information(CRTCInformation *output, int32_t fields); #define LIBGAMMAMM_GET_GAMMA__(AFFIX)\ - libgamma_gamma_ramps##AFFIX##_t ramps_;\ + struct libgamma_gamma_ramps##AFFIX ramps_;\ int r;\ ramps_.red = ramps->red.ramp;\ ramps_.green = ramps->green.ramp;\ @@ -865,7 +865,7 @@ namespace libgamma #undef LIBGAMMAMM_GET_GAMMA__ #define LIBGAMMAMM_SET_GAMMA__(AFFIX)\ - libgamma_gamma_ramps##AFFIX##_t ramps_;\ + struct libgamma_gamma_ramps##AFFIX ramps_;\ int r;\ ramps_.red = ramps->red.ramp;\ ramps_.green = ramps->green.ramp;\ @@ -873,7 +873,7 @@ namespace libgamma ramps_.red_size = ramps->red.size;\ ramps_.green_size = ramps->green.size;\ ramps_.blue_size = ramps->blue.size;\ - r = libgamma_crtc_set_gamma_ramps##AFFIX(this->native, ramps_);\ + r = libgamma_crtc_set_gamma_ramps##AFFIX(this->native, &ramps_);\ if (r)\ throw create_error(r) @@ -959,7 +959,7 @@ namespace libgamma /** * The state in the native structure */ - libgamma_crtc_state_t *native; + libgamma_crtc_state *native; }; #ifdef __GNUC__ |