ecore_drm2: remove flip test from commit path
authorDerek Foreman <derekf@osg.samsung.com>
Thu, 27 Apr 2017 20:47:12 +0000 (15:47 -0500)
committerDerek Foreman <derekf@osg.samsung.com>
Fri, 5 May 2017 17:53:22 +0000 (12:53 -0500)
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.

src/lib/ecore_drm2/ecore_drm2_fb.c

index 39885c6..1c77317 100644 (file)
@@ -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);