mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-main.c (clutter_get_timestamp): Return the correct number of microseconds (#447, Neil Roberts)
This commit is contained in:
parent
8e6bb196d5
commit
1639b7d0b8
@ -1,3 +1,8 @@
|
||||
2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-main.c (clutter_get_timestamp): Return the
|
||||
correct number of microseconds (#447, Neil Roberts)
|
||||
|
||||
2007-08-08 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
Merge the clutter.git/threading branch.
|
||||
|
@ -670,14 +670,15 @@ clutter_get_timestamp (void)
|
||||
{
|
||||
#ifdef CLUTTER_ENABLE_DEBUG
|
||||
ClutterMainContext *ctx;
|
||||
gdouble seconds;
|
||||
gdouble seconds;
|
||||
gulong msecs;
|
||||
|
||||
ctx = clutter_context_get_default ();
|
||||
|
||||
/* FIXME: may need a custom timer for embedded setups */
|
||||
seconds = g_timer_elapsed (ctx->timer, NULL);
|
||||
seconds = g_timer_elapsed (ctx->timer, &msecs);
|
||||
|
||||
return (gulong)(seconds / 0.0000001);
|
||||
return (gulong)(seconds / 1.0e-6) + msecs;
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user