Searched defs:TimePoint (Results 1 – 6 of 6) sorted by relevance
36 struct TimePoint : scheduler::SchedulerClock::time_point { struct41 constexpr TimePoint(scheduler::SchedulerClock::time_point p) in TimePoint() function46 static TimePoint now() { return scheduler::SchedulerClock::now(); }; in now() argument63 constexpr TimePoint::TimePoint(const Duration& d) : scheduler::SchedulerClock::time_point(d) {} in TimePoint() function
36 using TimePoint = std::chrono::time_point<std::chrono::system_clock>; variable
41 using TimePoint = std::chrono::time_point<Clock>; variable
51 using TimePoint = Clock::time_point; variable
57 void onFrameSignal(ICompositor&, VsyncId, TimePoint) override {} in onFrameSignal() argument
102 typedef std::chrono::steady_clock::time_point TimePoint; typedef