From 0667d4ce3490154020c02f9de51b4fe3ed3dd540 Mon Sep 17 00:00:00 2001 From: Seunghun Lee Date: Mon, 7 Jul 2014 09:03:48 -0400 Subject: [PATCH] Change time unit to milli-second from second when send event of frame done for wayland client. Summary: that's because weston sample client supposed that the time passed by frame callback is milli-second. Reviewers: devilhorns, zmike, raster CC: cedric Differential Revision: https://phab.enlightenment.org/D1133 --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index e2a0294d7..641a14a81 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -710,7 +710,7 @@ _e_comp_wl_cb_render_post(void *data EINA_UNUSED, Evas *evas EINA_UNUSED, void * if (!ec->wl_comp_data) continue; EINA_LIST_FREE(ec->wl_comp_data->frames, cb) { - wl_callback_send_done(cb, ecore_loop_time_get()); + wl_callback_send_done(cb, (ecore_loop_time_get() * 1000)); wl_resource_destroy(cb); }