From 410e6e80f00a6c660675c80904807a041c7b7d2a Mon Sep 17 00:00:00 2001 From: "mtklein@google.com" Date: Fri, 13 Sep 2013 19:52:27 +0000 Subject: Refactoring: get rid of the SkBenchmark void* parameter. While I was doing massive sed-ing, I also converted every bench to use DEF_BENCH instead of registering the ugly manual way. BUG= R=scroggo@google.com Review URL: https://codereview.chromium.org/23876006 git-svn-id: http://skia.googlecode.com/svn/trunk@11263 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/BitmapRectBench.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'bench/BitmapRectBench.cpp') diff --git a/bench/BitmapRectBench.cpp b/bench/BitmapRectBench.cpp index f917445051..1dd98ef975 100644 --- a/bench/BitmapRectBench.cpp +++ b/bench/BitmapRectBench.cpp @@ -48,7 +48,7 @@ class BitmapRectBench : public SkBenchmark { static const int kWidth = 128; static const int kHeight = 128; public: - BitmapRectBench(void* param, U8CPU alpha, bool doFilter, bool slightMatrix) : INHERITED(param) { + BitmapRectBench(U8CPU alpha, bool doFilter, bool slightMatrix) { fAlpha = SkToU8(alpha); fDoFilter = doFilter; fSlightMatrix = slightMatrix; @@ -101,10 +101,10 @@ private: typedef SkBenchmark INHERITED; }; -DEF_BENCH(return new BitmapRectBench(p, 0xFF, false, false)) -DEF_BENCH(return new BitmapRectBench(p, 0x80, false, false)) -DEF_BENCH(return new BitmapRectBench(p, 0xFF, true, false)) -DEF_BENCH(return new BitmapRectBench(p, 0x80, true, false)) +DEF_BENCH(return new BitmapRectBench(0xFF, false, false)) +DEF_BENCH(return new BitmapRectBench(0x80, false, false)) +DEF_BENCH(return new BitmapRectBench(0xFF, true, false)) +DEF_BENCH(return new BitmapRectBench(0x80, true, false)) -DEF_BENCH(return new BitmapRectBench(p, 0xFF, false, true)) -DEF_BENCH(return new BitmapRectBench(p, 0xFF, true, true)) +DEF_BENCH(return new BitmapRectBench(0xFF, false, true)) +DEF_BENCH(return new BitmapRectBench(0xFF, true, true)) -- cgit v1.2.3