mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-16 00:13:00 +00:00
a28931ef6b
* Cleanup unused struct fields, use uniform include guards
24 lines
519 B
C++
24 lines
519 B
C++
#pragma once
|
|
#ifndef MANGOHUD_TIMING_HPP
|
|
#define MANGOHUD_TIMING_HPP
|
|
|
|
#include <chrono>
|
|
|
|
#include "mesa/util/os_time.h"
|
|
|
|
class MesaClock {
|
|
public:
|
|
using rep = int64_t;
|
|
using period = std::nano;
|
|
using duration = std::chrono::duration<rep, period>;
|
|
using time_point = std::chrono::time_point<MesaClock>;
|
|
const static bool is_steady = true;
|
|
static time_point now() noexcept {
|
|
return time_point(duration(os_time_get_nano()));
|
|
}
|
|
};
|
|
|
|
using Clock = MesaClock;
|
|
|
|
#endif //MANGOHUD_TIMING_HPP
|