summaryrefslogtreecommitdiff
path: root/thirdparty/etcpak/Timing.cpp
blob: 2af851f9a9183e21e76c29cc3df3bd4259d9e4ef (plain)
1
2
3
4
5
6
7
8
#include <chrono>

#include "Timing.hpp"

uint64_t GetTime()
{
    return std::chrono::time_point_cast<std::chrono::microseconds>( std::chrono::high_resolution_clock::now() ).time_since_epoch().count();
}