From 7769a2240bd9b6666baa3f1203b9dd23706191a5 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Fri, 15 Dec 2017 12:04:39 -0500 Subject: [PATCH] wl-drm: move variable declaration to top and add TODO comment Signed-off-by: Chris Michael --- src/modules/wl_drm/e_mod_main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c index 99f10fa09..4c91f2610 100644 --- a/src/modules/wl_drm/e_mod_main.c +++ b/src/modules/wl_drm/e_mod_main.c @@ -434,7 +434,9 @@ _drm2_randr_create(void) s->config.rotation = 0; } - printf("DRM2 RRR: drm output rotation=%i\n", s->config.rotation); + printf("DRM2 RRR: drm output rotation=%i\n", s->config.rotation); + /* TODO: get current output rotation and store in + * s->config.rotation */ s->info.can_rot_0 = EINA_FALSE; s->info.can_rot_90 = EINA_FALSE;