raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=c742c011ae9160de938ad082f1fc8dfce1105850
commit c742c011ae9160de938ad082f1fc8dfce1105850 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu May 21 21:11:14 2020 +0100 e wl - fix frame req timestamp to be the same as others no others subtrace the base... weston doesnt.. no input events cb's do... this is a mistake with what is a wrong timeline as a result. fix and use the same timeline as everyone else @fix --- src/bin/e_pixmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 1e546d6e1..ea0542ba3 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -901,7 +901,7 @@ e_pixmap_image_clear(E_Pixmap *cp, Eina_Bool cache) cd->frames = NULL; EINA_LIST_FREE(free_list, cb) { - double t = ecore_loop_time_get() - wayland_time_base; + double t = ecore_loop_time_get(); wl_callback_send_done(cb, t * 1000); wl_resource_destroy(cb); } --
