Index: tools/timer/GpuTimer.h |
diff --git a/tools/timer/GpuTimer.h b/tools/timer/GpuTimer.h |
deleted file mode 100644 |
index da1fdab5c0957a0207627160b5932f382a56fe0a..0000000000000000000000000000000000000000 |
--- a/tools/timer/GpuTimer.h |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-/* |
- * Copyright 2011 Google Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
-#ifndef GpuTimer_DEFINED |
-#define GpuTimer_DEFINED |
- |
-class SkGLContext; |
- |
-class GpuTimer { |
-public: |
- GpuTimer(const SkGLContext*); |
- ~GpuTimer(); |
- void start(); |
- double end(); |
-private: |
- unsigned fQuery; |
- int fStarted; |
- const SkGLContext* fContext; |
- bool fSupported; |
-}; |
- |
-#endif |