From 60450891857950ba543ceedd6b87a938d3032cd3 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 8 May 2015 17:05:44 +0200 Subject: Gamma ramp support test return yes, no or maybe. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/lib/libgamma-method.h | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) (limited to 'src/lib/libgamma-method.h') diff --git a/src/lib/libgamma-method.h b/src/lib/libgamma-method.h index fc402ec..6e0cff1 100644 --- a/src/lib/libgamma-method.h +++ b/src/lib/libgamma-method.h @@ -472,6 +472,29 @@ typedef enum libgamma_subpixel_order #define LIBGAMMA_SUBPIXEL_ORDER_COUNT 6 +/** + * Answer enum to a decision problem. + */ +typedef enum libgamma_decision + { + /** + * The answer is negative. + */ + LIBGAMMA_NO = 0, + + /** + * The answer is unknown. + */ + LIBGAMMA_MAYBE = 1, + + /** + * The answer is positive. + */ + LIBGAMMA_YES = 2 + + } libgamma_decision_t; + + /** * For a `libgamma_crtc_information_t` fill in the * values for `edid` and `edid_length` and report errors to `edid_error`. @@ -755,9 +778,14 @@ typedef struct libgamma_crtc_information /** - * Non-zero gamma ramp adjustments are supported. + * `LIBGAMMA_NO` indicates that the CRTC does not support + * gamma ramp adjustments. `LIBGAMMA_MAYBE` indicates that + * the CRTC may or may not support gamma ramp adjustments, + * meaning that the display server really does not know, but + * the protocol is available. `LIBGAMMA_NO` indicates that + * the CRTC does support gamma ramp adjustments. */ - int gamma_support; + libgamma_decision_t gamma_support; /** * Zero on success, positive it holds the value `errno` had -- cgit v1.2.3-70-g09d2