aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/ReadPixBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/ReadPixBench.cpp')
-rw-r--r--bench/ReadPixBench.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/bench/ReadPixBench.cpp b/bench/ReadPixBench.cpp
index 805aaeb5f8..7848ebc757 100644
--- a/bench/ReadPixBench.cpp
+++ b/bench/ReadPixBench.cpp
@@ -6,7 +6,7 @@
* found in the LICENSE file.
*/
-#include "SkBenchmark.h"
+#include "Benchmark.h"
#include "SkCanvas.h"
@@ -15,7 +15,7 @@
* and then reads small chunks from it repeatedly. This can cause trouble
* for the GPU as readbacks are very expensive.
*/
-class ReadPixBench : public SkBenchmark {
+class ReadPixBench : public Benchmark {
public:
ReadPixBench() {}
@@ -59,7 +59,7 @@ private:
static const int kNumStepsY = 30;
static const int kWindowSize = 5;
- typedef SkBenchmark INHERITED;
+ typedef Benchmark INHERITED;
};
////////////////////////////////////////////////////////////////////////////////