From 2b71bbc0fe8f53f8a7a5e001c8495062257f1bc4 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 8 May 2015 23:00:39 +0200 Subject: update test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/test/crtcinfo.c | 28 +++++++++++++++++++++++++++- src/test/methods.c | 1 + 2 files changed, 28 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/test/crtcinfo.c b/src/test/crtcinfo.c index 502d82a..b95ed11 100644 --- a/src/test/crtcinfo.c +++ b/src/test/crtcinfo.c @@ -125,6 +125,25 @@ static const char* connector_type_str(libgamma_connector_type_t value) } } + +/** + * Get a string representation of a decision. + * + * @param value The decision. + * @return String representation. + */ +static const char* decision_str(libgamma_decision_t value) +{ + switch (value) + { + __case (LIBGAMMA_NO) + __case (LIBGAMMA_MAYBE) + __case (LIBGAMMA_YES) + default: + return "(unknown)"; + } +} + #undef __case @@ -196,7 +215,14 @@ void crtc_information(libgamma_crtc_state_t* restrict crtc) print2(size_t, LIBGAMMA_CRTC_INFO_GAMMA_SIZE, "green gamma ramp size", green_gamma_size, gamma_size_error); print2(size_t, LIBGAMMA_CRTC_INFO_GAMMA_SIZE, "blue gamma ramp size", blue_gamma_size, gamma_size_error); print(signed, LIBGAMMA_CRTC_INFO_GAMMA_DEPTH, "gamma ramp depth", gamma_depth); - print(int, LIBGAMMA_CRTC_INFO_GAMMA_SUPPORT, "gamma support", gamma_support); + /* Print gamma ramp support. */ + if ((fields & LIBGAMMA_CRTC_INFO_GAMMA_SUPPORT)) + { + if (info.gamma_support_error) + libgamma_perror(" (error) gamma support", info.gamma_support_error); + else + printf(" gamma support: %s\n", decision_str(info.gamma_support)); + } /* Print subpixel order for the monitor. */ if ((fields & LIBGAMMA_CRTC_INFO_SUBPIXEL_ORDER)) { diff --git a/src/test/methods.c b/src/test/methods.c index 30dadc8..00566e9 100644 --- a/src/test/methods.c +++ b/src/test/methods.c @@ -178,6 +178,7 @@ void method_capabilities(void) printf(" %s: %s\n", "Fixed gamma depth", caps.fixed_gamma_depth ? "yes" : "no"); printf(" %s: %s\n", "Real method", caps.real ? "yes" : "no"); printf(" %s: %s\n", "Fake method", caps.fake ? "yes" : "no"); + printf(" %s: %s\n", "Auto restore", caps.auto_restore ? "yes" : "no"); printf("\n"); } } -- cgit v1.2.3-70-g09d2