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

Side by Side Diff: bench/TextBlobBench.cpp

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/TextBench.cpp ('k') | bench/TileBench.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 /* 2 /*
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "Benchmark.h" 9 #include "Benchmark.h"
10 #include "Resources.h" 10 #include "Resources.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 nullptr); 47 nullptr);
48 memcpy(run.glyphs, glyphs.begin(), glyphs.count() * sizeof(uint16_t)); 48 memcpy(run.glyphs, glyphs.begin(), glyphs.count() * sizeof(uint16_t));
49 49
50 fBlob.reset(builder.build()); 50 fBlob.reset(builder.build());
51 } 51 }
52 52
53 const char* onGetName() override { 53 const char* onGetName() override {
54 return "TextBlobBench"; 54 return "TextBlobBench";
55 } 55 }
56 56
57 void onDraw(const int loops, SkCanvas* canvas) override { 57 void onDraw(int loops, SkCanvas* canvas) override {
58 SkPaint paint; 58 SkPaint paint;
59 59
60 // To ensure maximum caching, we just redraw the blob at the same place everytime 60 // To ensure maximum caching, we just redraw the blob at the same place everytime
61 for (int i = 0; i < loops; i++) { 61 for (int i = 0; i < loops; i++) {
62 canvas->drawTextBlob(fBlob, 0, 0, paint); 62 canvas->drawTextBlob(fBlob, 0, 0, paint);
63 } 63 }
64 } 64 }
65 65
66 private: 66 private:
67 67
68 SkAutoTUnref<const SkTextBlob> fBlob; 68 SkAutoTUnref<const SkTextBlob> fBlob;
69 SkTDArray<uint16_t> fGlyphs; 69 SkTDArray<uint16_t> fGlyphs;
70 SkAutoTUnref<SkTypeface> fTypeface; 70 SkAutoTUnref<SkTypeface> fTypeface;
71 71
72 typedef Benchmark INHERITED; 72 typedef Benchmark INHERITED;
73 }; 73 };
74 74
75 DEF_BENCH( return new TextBlobBench(); ) 75 DEF_BENCH( return new TextBlobBench(); )
OLDNEW
« no previous file with comments | « bench/TextBench.cpp ('k') | bench/TileBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698