Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skqp
/
f6c3ebdeb135dcdb9af225bd7af77f1fe1f92787
/
.
/
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