From 13454ff0bb26dc7f2dcf59f95c83b26087b13a11 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 16 Feb 2023 08:25:41 +0000 Subject: [PATCH] randr - add some more debug info to log --- src/bin/e_comp_x_randr.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_x_randr.c b/src/bin/e_comp_x_randr.c index 3ead982c1..4917c7906 100644 --- a/src/bin/e_comp_x_randr.c +++ b/src/bin/e_comp_x_randr.c @@ -548,12 +548,15 @@ _e_comp_xrandr_cmd(void) ecore_x_randr_output_crtc_get(root, outputs[i]); info = NULL; - printf("RRR: crtc slot empty: %i\n", i); + printf("RRR: crtc slot empty: %i, crtc=%i, output=%i\n", i, crtc, outputs[i]); if (crtc) info = ecore_x_randr_crtc_info_get(root, crtc); + printf("RRR: crtc info = %p\n", info); if (info) { + printf("RRR: output exists=%i rot exists=%i\n", + _output_exists(out, info), _rotation_exists(s->config.rotation, info)); if (_output_exists(out, info) && _rotation_exists(s->config.rotation, info))