1
0
Fork 0

Deprecate clutter_get_timestamp()

This function should have never been made public in the first place; its
output depends on a configuration option of Clutter, and it's basically
useful only for internal debugging.
This commit is contained in:
Emmanuele Bassi 2011-11-15 17:47:00 +00:00
parent 59f395d856
commit 66d46fd55e
3 changed files with 17 additions and 3 deletions

View file

@ -1417,10 +1417,22 @@ _clutter_context_get_default (void)
/**
* clutter_get_timestamp:
*
* Returns the approximate number of microseconds passed since clutter was
* Returns the approximate number of microseconds passed since Clutter was
* intialised.
*
* Return value: Number of microseconds since clutter_init() was called.
* This function shdould not be used by application code.
*
* The output of this function depends on whether Clutter was configured to
* enable its debugging code paths, so it's less useful than intended.
*
* Since Clutter 1.10, this function is an alias to g_get_monotonic_time()
* if Clutter was configured to enable the debugging code paths.
*
* Return value: Number of microseconds since clutter_init() was called, or
* zero if Clutter was not configured with debugging code paths.
*
* Deprecated: 1.10: Use #GTimer or g_get_monotonic_time() for a proper
* timing source
*/
gulong
clutter_get_timestamp (void)

View file

@ -100,7 +100,6 @@ void clutter_do_event (ClutterEvent *e
/* Debug utility functions */
gboolean clutter_get_debug_enabled (void);
gboolean clutter_get_show_fps (void);
gulong clutter_get_timestamp (void);
gboolean clutter_get_accessibility_enabled (void);
/* Threading functions */

View file

@ -51,6 +51,9 @@ void clutter_ungrab_pointer_for_device (gint
CLUTTER_DEPRECATED
void clutter_set_default_frame_rate (guint frames_per_sec);
CLUTTER_DEPRECATED
gulong clutter_get_timestamp (void);
G_END_DECLS
#endif /* __CLUTTER_MAIN_DEPRECATED_H__ */