diff options
author | Derek Foreman <derekf@osg.samsung.com> | 2015-03-16 13:35:16 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-03-16 13:35:16 -0400 |
commit | feca6dce4fd34bff941fa273a69f911821f724ec (patch) | |
tree | edfec5c4456997bae0e28a371281839c00da9152 | |
parent | 519560ac3fd2f254c0a5e62ef2fbfe274938f48d (diff) | |
download | enlightenment-feca6dce4fd34bff941fa273a69f911821f724ec.tar.gz |
Wayland frame callback times are in milliseconds
Reviewers: zmike, devilhorns
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D2173
-rw-r--r-- | src/bin/e_pixmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 103c78b764..a558e910c3 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -638,7 +638,7 @@ e_pixmap_image_clear(E_Pixmap *cp, Eina_Bool cache) cd = (E_Comp_Wl_Client_Data *)cp->client->comp_data; EINA_LIST_FREE(cd->frames, cb) { - wl_callback_send_done(cb, ecore_time_unix_get()); + wl_callback_send_done(cb, ecore_time_unix_get() * 1000); wl_resource_destroy(cb); } } |