blob: 7069ca485b6716149f86b4f6dc144f87697404e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SkBenchGpuTimer_DEFINED
#define SkBenchGpuTimer_DEFINED
class BenchGpuTimer {
public:
BenchGpuTimer();
~BenchGpuTimer();
void startGpu();
double endGpu();
};
#endif
|