mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
cede5027d3
Closes #2703
66 lines
1.7 KiB
C
66 lines
1.7 KiB
C
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2002-2006 Marcus Geelnard
|
|
// SPDX-FileCopyrightText: 2006-2017 Camilla Löwy <elmindreda@glfw.org>
|
|
// SPDX-FileCopyrightText: 2023 The Ebitengine Authors
|
|
|
|
//go:build freebsd || linux || netbsd || openbsd
|
|
|
|
#include "internal_unix.h"
|
|
|
|
#include <sys/time.h>
|
|
#include <time.h>
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
////// GLFW internal API //////
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Initialise timer
|
|
//
|
|
void _glfwInitTimerPOSIX(void)
|
|
{
|
|
#if defined(CLOCK_MONOTONIC)
|
|
struct timespec ts;
|
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0)
|
|
{
|
|
_glfw.timer.posix.monotonic = GLFW_TRUE;
|
|
_glfw.timer.posix.frequency = 1000000000;
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
_glfw.timer.posix.monotonic = GLFW_FALSE;
|
|
_glfw.timer.posix.frequency = 1000000;
|
|
}
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
////// GLFW platform API //////
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
uint64_t _glfwPlatformGetTimerValue(void)
|
|
{
|
|
#if defined(CLOCK_MONOTONIC)
|
|
if (_glfw.timer.posix.monotonic)
|
|
{
|
|
struct timespec ts;
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
return (uint64_t) ts.tv_sec * (uint64_t) 1000000000 + (uint64_t) ts.tv_nsec;
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
struct timeval tv;
|
|
gettimeofday(&tv, NULL);
|
|
return (uint64_t) tv.tv_sec * (uint64_t) 1000000 + (uint64_t) tv.tv_usec;
|
|
}
|
|
}
|
|
|
|
uint64_t _glfwPlatformGetTimerFrequency(void)
|
|
{
|
|
return _glfw.timer.posix.frequency;
|
|
}
|
|
|