devilhorns pushed a commit to branch feature/wayland/multi-output. http://git.enlightenment.org/core/efl.git/commit/?id=a510a7275cc57a2386b2a5a3ac002568f341e3e4
commit a510a7275cc57a2386b2a5a3ac002568f341e3e4 Author: Chris Michael <[email protected]> Date: Thu Mar 29 09:17:52 2018 -0400 ecore-evas-drm: Initial work on getting ecore_evas_drm to do multi-output This patch adds support for getting ecore_evas_drm to function with more than one output. Both clone & extended mode should work with this, however please Note that rotation will be broken until future patches implement rotation per-output. @feature Signed-off-by: Chris Michael <[email protected]> --- src/modules/ecore_evas/engines/drm/ecore_evas_drm.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/modules/ecore_evas/engines/drm/ecore_evas_drm.c b/src/modules/ecore_evas/engines/drm/ecore_evas_drm.c index 798c5d032e..1187baf9a3 100644 --- a/src/modules/ecore_evas/engines/drm/ecore_evas_drm.c +++ b/src/modules/ecore_evas/engines/drm/ecore_evas_drm.c @@ -281,9 +281,6 @@ _drm_rotation_do(Ecore_Evas *ee, int rotation, int resize) if (!found) return; - /* output = eina_list_nth(edata->outputs, 0); */ - /* if (!output) return; */ - rotations = ecore_drm2_output_supported_rotations_get(output); if (rotations >= 0) { --
