From: Derek Foreman Date: Thu, 27 Apr 2017 20:47:12 +0000 (-0500) Subject: ecore_drm2: remove flip test from commit path X-Git-Tag: upstream/1.20.0~1217 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f1d779da06209097c5004c96d6a32461957be02d;p=platform%2Fupstream%2Fefl.git ecore_drm2: remove flip test from commit path We'll be doing tests as we build up plane state assignment. it's too late to do anything about it if we fail here - failed tests will block plane assignment in the first place so the scene graph knows it still has to render those visual elements. --- diff --git a/src/lib/ecore_drm2/ecore_drm2_fb.c b/src/lib/ecore_drm2/ecore_drm2_fb.c index 39885c6..1c77317 100644 --- a/src/lib/ecore_drm2/ecore_drm2_fb.c +++ b/src/lib/ecore_drm2/ecore_drm2_fb.c @@ -490,10 +490,7 @@ ecore_drm2_fb_flip(Ecore_Drm2_Fb *fb, Ecore_Drm2_Output *output) if (!output->enabled) return -1; if (_ecore_drm2_use_atomic) - { - if (_fb_atomic_flip_test(output)) ret = _fb_atomic_flip(output); - } else ret = _fb_flip(output, fb);