summaryrefslogtreecommitdiff
path: root/src/fps.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2018-02-27 22:53:14 -0800
committerVito Caputo <vcaputo@pengaru.com>2018-02-27 23:03:10 -0800
commit6f39c7145f19a2644d36bde00a77f7514e1f4545 (patch)
tree783ef52d47b89aaf6822b4287a92825dc4bceac5 /src/fps.c
parentb18fc1ca50570b0674095ee87711e19ee95ae8df (diff)
*: make buildable for windows w/mingw32
strndup is missing, add trivial implementation signals are missing so fps counter is disabled for now
Diffstat (limited to 'src/fps.c')
-rw-r--r--src/fps.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/fps.c b/src/fps.c
index 99a3f85..57f67a7 100644
--- a/src/fps.c
+++ b/src/fps.c
@@ -17,6 +17,9 @@ static void sigalrm_handler(int signum)
int fps_setup(void)
{
+#ifdef __WIN32__
+
+#else
struct itimerval interval = {
.it_interval = { .tv_sec = 1, .tv_usec = 0 },
.it_value = { .tv_sec = 1, .tv_usec = 0 },
@@ -29,11 +32,15 @@ int fps_setup(void)
return 0;
return 1;
+#endif
}
void fps_print(fb_t *fb)
{
+#ifdef __WIN32__
+
+#else
unsigned n;
if (!print_fps)
@@ -43,4 +50,5 @@ void fps_print(fb_t *fb)
printf("FPS: %u\n", n);
print_fps = 0;
+#endif
}
© All Rights Reserved