blob: 7069ca485b6716149f86b4f6dc144f87697404e1 [file] [log] [blame]
bungeman@google.combe9ad4e2011-06-07 19:16:02 +00001#ifndef SkBenchGpuTimer_DEFINED
2#define SkBenchGpuTimer_DEFINED
3
4class BenchGpuTimer {
5public:
6 BenchGpuTimer();
7 ~BenchGpuTimer();
8 void startGpu();
9 double endGpu();
10};
11
12#endif