Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: bench/GMBench.h

Issue 1379923005: Remove const from `const int loops`. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: n too Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bench/GLVertexAttributesBench.cpp ('k') | bench/GMBench.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 #ifndef GMBench_DEFINED 7 #ifndef GMBench_DEFINED
8 #define GMBench_DEFINED 8 #define GMBench_DEFINED
9 9
10 #include "Benchmark.h" 10 #include "Benchmark.h"
11 #include "SkCanvas.h" 11 #include "SkCanvas.h"
12 #include "gm.h" 12 #include "gm.h"
13 13
14 /** 14 /**
15 * Runs a GM as a benchmark by repeatedly drawing the GM. 15 * Runs a GM as a benchmark by repeatedly drawing the GM.
16 */ 16 */
17 class GMBench : public Benchmark { 17 class GMBench : public Benchmark {
18 public: 18 public:
19 // Constructor takes ownership of the GM param. 19 // Constructor takes ownership of the GM param.
20 GMBench(skiagm::GM* gm); 20 GMBench(skiagm::GM* gm);
21 virtual ~GMBench(); 21 virtual ~GMBench();
22 22
23 protected: 23 protected:
24 const char* onGetName() override; 24 const char* onGetName() override;
25 bool isSuitableFor(Backend backend) override; 25 bool isSuitableFor(Backend backend) override;
26 void onDraw(const int loops, SkCanvas* canvas) override; 26 void onDraw(int loops, SkCanvas* canvas) override;
27 SkIPoint onGetSize() override; 27 SkIPoint onGetSize() override;
28 28
29 private: 29 private:
30 skiagm::GM* fGM; 30 skiagm::GM* fGM;
31 SkString fName; 31 SkString fName;
32 typedef Benchmark INHERITED; 32 typedef Benchmark INHERITED;
33 }; 33 };
34 34
35 #endif 35 #endif
OLDNEW
« no previous file with comments | « bench/GLVertexAttributesBench.cpp ('k') | bench/GMBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698