OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 | 7 |
8 #include "Benchmark.h" | 8 #include "Benchmark.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkRect.h" | 10 #include "SkRect.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 class TableBench : public Benchmark { | 26 class TableBench : public Benchmark { |
27 public: | 27 public: |
28 static const int kNumRows = 48; | 28 static const int kNumRows = 48; |
29 static const int kNumCols = 32; | 29 static const int kNumCols = 32; |
30 | 30 |
31 protected: | 31 protected: |
32 virtual const char* onGetName() { | 32 virtual const char* onGetName() { |
33 return "tablebench"; | 33 return "tablebench"; |
34 } | 34 } |
35 | 35 |
36 virtual void onDraw(const int loops, SkCanvas* canvas) { | 36 virtual void onDraw(int loops, SkCanvas* canvas) { |
37 SkPaint cellPaint; | 37 SkPaint cellPaint; |
38 cellPaint.setColor(0xFFFFFFF); | 38 cellPaint.setColor(0xFFFFFFF); |
39 | 39 |
40 SkPaint borderPaint; | 40 SkPaint borderPaint; |
41 borderPaint.setColor(0xFFCCCCCC); | 41 borderPaint.setColor(0xFFCCCCCC); |
42 | 42 |
43 for (int i = 0; i < loops; ++i) { | 43 for (int i = 0; i < loops; ++i) { |
44 for (int row = 0; row < kNumRows; ++row) { | 44 for (int row = 0; row < kNumRows; ++row) { |
45 for (int col = 0; col < kNumCols; ++col) { | 45 for (int col = 0; col < kNumCols; ++col) { |
46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth, | 46 SkRect cell = SkRect::MakeLTRB(col * kCellWidth, |
(...skipping 16 matching lines...) Expand all Loading... |
63 } | 63 } |
64 } | 64 } |
65 } | 65 } |
66 } | 66 } |
67 | 67 |
68 private: | 68 private: |
69 typedef Benchmark INHERITED; | 69 typedef Benchmark INHERITED; |
70 }; | 70 }; |
71 | 71 |
72 DEF_BENCH( return new TableBench(); ) | 72 DEF_BENCH( return new TableBench(); ) |
OLD | NEW |