mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
cogl: Remove get_monotonic_time_ns()
It's no longer needed. Everything else uses and assumes g_get_monotonic_time(). Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1484>
This commit is contained in:
parent
4ba2df0bd2
commit
5d8cb2786b
@ -355,15 +355,6 @@ _cogl_winsys_wait_for_gpu (CoglOnscreen *onscreen)
|
|||||||
ctx->glFinish ();
|
ctx->glFinish ();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int64_t
|
|
||||||
get_monotonic_time_ns (void)
|
|
||||||
{
|
|
||||||
struct timespec ts;
|
|
||||||
|
|
||||||
clock_gettime (CLOCK_MONOTONIC, &ts);
|
|
||||||
return ts.tv_sec * G_GINT64_CONSTANT (1000000000) + ts.tv_nsec;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ensure_ust_type (CoglRenderer *renderer,
|
ensure_ust_type (CoglRenderer *renderer,
|
||||||
GLXDrawable drawable)
|
GLXDrawable drawable)
|
||||||
@ -403,7 +394,7 @@ ensure_ust_type (CoglRenderer *renderer,
|
|||||||
|
|
||||||
/* This is the time source that the newer (fixed) linux drm
|
/* This is the time source that the newer (fixed) linux drm
|
||||||
* drivers use (Linux >= 3.8) */
|
* drivers use (Linux >= 3.8) */
|
||||||
current_monotonic_time = get_monotonic_time_ns () / 1000;
|
current_monotonic_time = g_get_monotonic_time ();
|
||||||
|
|
||||||
if (current_monotonic_time > ust - 1000000 &&
|
if (current_monotonic_time > ust - 1000000 &&
|
||||||
current_monotonic_time < ust + 1000000)
|
current_monotonic_time < ust + 1000000)
|
||||||
|
Loading…
Reference in New Issue
Block a user