devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=f5e19a7721a37e6373fa7710b739ca798d7f58cc

commit f5e19a7721a37e6373fa7710b739ca798d7f58cc
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Tue Aug 29 15:17:36 2017 -0400

    wl-drm: Add screen position to debug output
    
    Small patch which adds the screen geometry to the output of drm2 randr
    apply so we can test mutli-output setups and know which screen is where.
    
    NB: No functional changes
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/modules/wl_drm/e_mod_main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c
index 5e728962a..4c956da61 100644
--- a/src/modules/wl_drm/e_mod_main.c
+++ b/src/modules/wl_drm/e_mod_main.c
@@ -604,7 +604,8 @@ _drm2_randr_apply(void)
         ecore_drm2_output_enabled_set(output, s->config.enabled);
 
         printf("\tDRM2 RRR: Mode\n");
-        printf("\t\tDRM2 RRR: Geom: %d %d\n",
+        printf("\t\tDRM2 RRR: Geom: %d %d %dx%d\n",
+               s->config.geom.x, s->config.geom.y,
                s->config.mode.w, s->config.mode.h);
         printf("\t\tDRM2 RRR: Refresh: %f\n", s->config.mode.refresh);
         printf("\t\tDRM2 RRR: Preferred: %d\n", s->config.mode.preferred);

-- 


Reply via email to