summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeunghun Lee <shiin.lee@samsung.com>2014-07-07 09:03:48 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2014-08-12 14:46:13 -0400
commit18cc4708e6c2f1d4d5dae4d671f8d1912f34c3f6 (patch)
tree6a06c524d5e41e2143c0f69a23f2dd448655797d
parentb3033beabac2f441ca359b91666a5fd79e3437ba (diff)
downloadenlightenment-18cc4708e6c2f1d4d5dae4d671f8d1912f34c3f6.tar.gz
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
-rw-r--r--src/bin/e_comp_wl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
index e2a0294d7c..641a14a817 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);
}