mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
31 lines
366 B
C++
31 lines
366 B
C++
#ifndef __TRACYSYSTIME_HPP__
|
|
#define __TRACYSYSTIME_HPP__
|
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
|
# define TRACY_HAS_SYSTIME
|
|
#endif
|
|
|
|
#ifdef TRACY_HAS_SYSTIME
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
class SysTime
|
|
{
|
|
public:
|
|
SysTime();
|
|
float Get();
|
|
|
|
private:
|
|
# if defined _WIN32 || defined __CYGWIN__
|
|
uint64_t idle, used;
|
|
# endif
|
|
};
|
|
|
|
}
|
|
#endif
|
|
|
|
#endif
|