Stores metadata for recorded timing sessions. More...
#include <Timer.h>
Public Member Functions | |
| TimerData (std::string name, float time, float threshold) | |
| Constructs a new TimerData entry. | |
Public Attributes | |
| std::string | Name |
| Name of the timed operation. | |
| float | ElapsedTime |
| Duration of the measured operation in milliseconds. | |
| float | Threshold |
| Optional threshold for performance comparison. | |
Stores metadata for recorded timing sessions.
Holds the name, elapsed time, and an optional threshold for profiling comparisons.
|
inline |
Constructs a new TimerData entry.
| name | Name of the timer. |
| time | Elapsed time in milliseconds. |
| threshold | Threshold value or -1 if none. |
| float Raven::TimerData::ElapsedTime |
Duration of the measured operation in milliseconds.
| std::string Raven::TimerData::Name |
Name of the timed operation.
| float Raven::TimerData::Threshold |
Optional threshold for performance comparison.