skia2/bench/BenchSysTimer_posix.h
2011-06-07 19:16:02 +00:00

20 lines
267 B
C++

#ifndef SkBenchSysTimer_DEFINED
#define SkBenchSysTimer_DEFINED
//Time
#include <time.h>
class BenchSysTimer {
public:
void startWall();
void startCpu();
double endCpu();
double endWall();
private:
timespec fCpu;
timespec fWall;
};
#endif