derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1c60ac3bc9dfcfed58f15ac1c8c8f9564149b067
commit 1c60ac3bc9dfcfed58f15ac1c8c8f9564149b067 Author: Derek Foreman <der...@osg.samsung.com> Date: Fri May 12 14:51:39 2017 -0500 ee_drm: Remove some commented out code I think this was intended as a reminder to do something that's already been done. Or something. --- src/modules/evas/engines/drm/evas_outbuf.c | 35 ------------------------------ 1 file changed, 35 deletions(-) diff --git a/src/modules/evas/engines/drm/evas_outbuf.c b/src/modules/evas/engines/drm/evas_outbuf.c index f890854..99e8f42 100644 --- a/src/modules/evas/engines/drm/evas_outbuf.c +++ b/src/modules/evas/engines/drm/evas_outbuf.c @@ -26,41 +26,6 @@ _outbuf_buffer_swap(Outbuf *ob, Eina_Rectangle *rects, unsigned int count) ecore_drm2_fb_flip(ofb->fb, ob->priv.output); ofb->drawn = EINA_TRUE; ofb->age = 0; - - /* plane = ecore_drm2_plane_find(ob->priv.output, ofb->fb, ob->format); */ - /* if (plane) */ - /* { */ - /* drmVBlank vbl = */ - /* { */ - /* .request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT, */ - /* .request.sequence = 1, */ - /* }; */ - - /* vbl.request.type |= ecore_drm2_output_vblank_get(ob->priv.output); */ - /* vbl.request.signal = (unsigned long)ofb; */ - - /* ecore_drm2_fb_dirty(ofb->fb, rects, count); */ - - /* if (!ecore_drm2_plane_fb_set(plane, ofb->fb)) */ - /* { */ - /* ERR("Failed to set FB on Plane"); */ - /* return; */ - /* } */ - - /* if (drmWaitVBlank(ob->fd, &vbl) < 0) */ - /* { */ - /* _outbuf_tick_source_set(NULL); */ - /* return; */ - /* } */ - - /* ofb->busy = EINA_TRUE; */ - /* ofb->drawn = EINA_TRUE; */ - /* ofb->age = 0; */ - - /* ob->priv.current = NULL; */ - /* } */ - /* else */ - /* WRN("Could not find a plane for this framebuffer"); */ } static Eina_Bool --