| 40 | return (1.f / m_DeltaTime); |
| 41 | } |
| 42 | uint64 Time::Timestamp() const |
| 43 | { |
| 44 | #ifndef PLATFORM_Linux |
| 45 | return static_cast<uint64>(std::chrono::duration_cast<std::chrono::nanoseconds>(Diff(begin, Now())).count()); |
| 46 | #endif |
| 47 | } |
| 48 | uint64 Time::SystemTimestamp() const |
| 49 | { |
| 50 | #ifndef PLATFORM_Linux |
nothing calls this directly
no outgoing calls
no test coverage detected