| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef ANKI_UTIL_HIGH_REZ_TIMER_H
- #define ANKI_UTIL_HIGH_REZ_TIMER_H
- #include "anki/util/StdTypes.h"
- namespace anki {
- /// @addtogroup util
- /// @{
- /// @addtogroup time
- /// @{
- /// High resolution timer. All time in seconds
- class HighRezTimer
- {
- public:
- /// The type that the timer manipulates the results
- typedef F64 Scalar;
- /// Start the timer
- void start();
- /// Stop the timer
- void stop();
- /// Get the time elapsed between start and stop (if its stopped) or
- /// between start and the current time
- Scalar getElapsedTime() const;
- /// Get the current date's seconds
- static Scalar getCurrentTime();
- /// Micro sleep
- static void sleep(Scalar seconds);
- private:
- Scalar startTime = 0.0;
- Scalar stopTime = 0.0;
- };
- /// @}
- /// @}
- } // end namespace anki
- #endif
|