aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/InterpBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/InterpBench.cpp')
-rw-r--r--bench/InterpBench.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/InterpBench.cpp b/bench/InterpBench.cpp
index f6f70d44c8..b19af8f35f 100644
--- a/bench/InterpBench.cpp
+++ b/bench/InterpBench.cpp
@@ -1,13 +1,13 @@
-#include "SkBenchmark.h"
+#include "Benchmark.h"
#include "SkColorPriv.h"
#include "SkMatrix.h"
+#include "SkPaint.h"
#include "SkRandom.h"
#include "SkString.h"
-#include "SkPaint.h"
#define TILE(x, width) (((x) & 0xFFFF) * width >> 16)
-class InterpBench : public SkBenchmark {
+class InterpBench : public Benchmark {
enum {
kBuffer = 128,
kLoop = 20000
@@ -43,7 +43,7 @@ protected:
}
private:
- typedef SkBenchmark INHERITED;
+ typedef Benchmark INHERITED;
};
class Fixed16D16Interp : public InterpBench {