summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Foreman <derekf@osg.samsung.com>2017-04-27 15:47:12 -0500
committerDerek Foreman <derekf@osg.samsung.com>2017-05-04 16:51:18 -0500
commit965ce587c01bfbc759e32fcb08fd55c59d90fb41 (patch)
tree60ba52bffded0a4b133536324dc0d1bab509ecf6
parentfae4c6ce6207654dcdca6ed66b3ebaec83749c1b (diff)
downloadefl-965ce587c01bfbc759e32fcb08fd55c59d90fb41.tar.gz
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.
-rw-r--r--src/lib/ecore_drm2/ecore_drm2_fb.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/ecore_drm2/ecore_drm2_fb.c b/src/lib/ecore_drm2/ecore_drm2_fb.c
index 39885c6041..1c773176bd 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);