diff options
author | David Robillard <d@drobilla.net> | 2019-06-27 22:07:36 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-06-27 22:48:43 +0200 |
commit | 664b49726136f861d695b96f4e285f9afcdc7127 (patch) | |
tree | fd08f9f13b9f89c782dc88363a92a161f54f7b42 /pugl/pugl_x11.c | |
parent | bd5d643192e189e2f4d34ecc1b93a7758cfeb583 (diff) | |
download | pugl-664b49726136f861d695b96f4e285f9afcdc7127.tar.gz pugl-664b49726136f861d695b96f4e285f9afcdc7127.tar.bz2 pugl-664b49726136f861d695b96f4e285f9afcdc7127.zip |
Add puglGetTime()
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r-- | pugl/pugl_x11.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 6563805..2fd6e92 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -20,6 +20,7 @@ @file pugl_x11.c X11 Pugl Implementation. */ +#define _POSIX_C_SOURCE 199309L #include "pugl/pugl_internal.h" #include "pugl/pugl_x11.h" @@ -38,6 +39,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <time.h> #ifndef MIN # define MIN(a, b) (((a) < (b)) ? (a) : (b)) @@ -516,6 +518,14 @@ puglProcessEvents(PuglView* view) return PUGL_SUCCESS; } +double +puglGetTime(PuglView* view) +{ + struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); + return (double)ts.tv_sec + ts.tv_nsec / 1000000000.0; +} + void puglPostRedisplay(PuglView* view) { |