Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skqp
/
6c4cd265e368531f6c73f4bbb0cf073d3899e10c
/
.
/
bench
/
BenchSysTimer_posix.h
blob: 09dfb0e14235104918e89890ab6b4db60ccc596e [
file
] [
log
] [
blame
]
#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