From 937ca952edfd0e9e35ee286547eef81936f248d0 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Tue, 26 Jan 2016 10:43:21 -0600 Subject: [PATCH] ecore-drm: Only queue re-flip on the head that needs it Prevents stuttering when a head that was successfully set bounces back to a previous frame the other head failed to set. --- src/lib/ecore_drm/ecore_drm_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_drm/ecore_drm_device.c b/src/lib/ecore_drm/ecore_drm_device.c index 756a5fcac9..16a7843cd6 100644 --- a/src/lib/ecore_drm/ecore_drm_device.c +++ b/src/lib/ecore_drm/ecore_drm_device.c @@ -65,7 +65,7 @@ _ecore_drm_device_cb_page_flip(int fd EINA_UNUSED, unsigned int frame EINA_UNUSE if (next) { output->next = NULL; - ecore_drm_fb_send(output->dev, next, NULL, NULL); + _ecore_drm_output_fb_send(output->dev, next, output); } }