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:
Ivan Molodetskikh 2020-10-09 11:21:55 +03:00 committed by Marge Bot
parent 4ba2df0bd2
commit 5d8cb2786b

View File

@ -355,15 +355,6 @@ _cogl_winsys_wait_for_gpu (CoglOnscreen *onscreen)
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
ensure_ust_type (CoglRenderer *renderer,
GLXDrawable drawable)
@ -403,7 +394,7 @@ ensure_ust_type (CoglRenderer *renderer,
/* This is the time source that the newer (fixed) linux drm
* 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 &&
current_monotonic_time < ust + 1000000)