2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-main.c (clutter_get_timestamp): Remove
	the microseconds remainder, which is mostly useless. (#447)
This commit is contained in:
Emmanuele Bassi 2007-08-08 13:24:43 +00:00
parent 1639b7d0b8
commit 705f47783a
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-main.c (clutter_get_timestamp): Remove
the microseconds remainder, which is mostly useless. (#447)
2007-08-08 Emmanuele Bassi <ebassi@openedhand.com> 2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-main.c (clutter_get_timestamp): Return the * clutter/clutter-main.c (clutter_get_timestamp): Return the

View File

@ -671,14 +671,13 @@ clutter_get_timestamp (void)
#ifdef CLUTTER_ENABLE_DEBUG #ifdef CLUTTER_ENABLE_DEBUG
ClutterMainContext *ctx; ClutterMainContext *ctx;
gdouble seconds; gdouble seconds;
gulong msecs;
ctx = clutter_context_get_default (); ctx = clutter_context_get_default ();
/* FIXME: may need a custom timer for embedded setups */ /* FIXME: may need a custom timer for embedded setups */
seconds = g_timer_elapsed (ctx->timer, &msecs); seconds = g_timer_elapsed (ctx->timer, NULL);
return (gulong)(seconds / 1.0e-6) + msecs; return (gulong)(seconds / 1.0e-6);
#else #else
return 0; return 0;
#endif #endif