Home | History | Annotate | Download | only in bench
      1 #ifndef SkBenchGpuTimer_DEFINED
      2 #define SkBenchGpuTimer_DEFINED
      3 
      4 class BenchGpuTimer {
      5 public:
      6     BenchGpuTimer();
      7     ~BenchGpuTimer();
      8     void startGpu();
      9     double endGpu();
     10 };
     11 
     12 #endif
     13