summaryrefslogtreecommitdiff
path: root/thirdparty/etcpak/Timing.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-04-13 01:09:38 +0200
committerGitHub <noreply@github.com>2021-04-13 01:09:38 +0200
commit8793a464d312c5a48490fbec03c26f2835318063 (patch)
tree8be39ad26992b0bc10ee69fef5f0c5cadb6a0760 /thirdparty/etcpak/Timing.cpp
parent075f358fcddbb3df8417ef85baabdf3684a4efd2 (diff)
parentd840165a324b5c218ca3a4882f030986855c8383 (diff)
Merge pull request #47370 from fire/etcpak
Add thirdparty library etcpak for faster imports.
Diffstat (limited to 'thirdparty/etcpak/Timing.cpp')
-rw-r--r--thirdparty/etcpak/Timing.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/thirdparty/etcpak/Timing.cpp b/thirdparty/etcpak/Timing.cpp
new file mode 100644
index 0000000000..2af851f9a9
--- /dev/null
+++ b/thirdparty/etcpak/Timing.cpp
@@ -0,0 +1,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();
+}