OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 "gm.h" | 8 #include "gm.h" |
9 | 9 |
10 namespace skiagm { | 10 namespace skiagm { |
(...skipping 14 matching lines...) Expand all Loading... |
25 return SkISize::Make(240, 320); | 25 return SkISize::Make(240, 320); |
26 } | 26 } |
27 | 27 |
28 void onDraw(SkCanvas* canvas) override { | 28 void onDraw(SkCanvas* canvas) override { |
29 | 29 |
30 SkPaint paint; | 30 SkPaint paint; |
31 paint.setColor(SK_ColorWHITE); | 31 paint.setColor(SK_ColorWHITE); |
32 paint.setStyle(SkPaint::kStroke_Style); | 32 paint.setStyle(SkPaint::kStroke_Style); |
33 paint.setAntiAlias(true); | 33 paint.setAntiAlias(true); |
34 | 34 |
35 static const SkRect rect = { 0, 0, 10, 10 }; | 35 constexpr SkRect rect = { 0, 0, 10, 10 }; |
36 static const SkRect rect2 = { 0, 0, 20, 20 }; | 36 constexpr SkRect rect2 = { 0, 0, 20, 20 }; |
37 | 37 |
38 static const SkScalar gStrokeWidths[] = { | 38 constexpr SkScalar gStrokeWidths[] = { |
39 4, 2, 1, 0.5f, 0.25f, 0.125f, 0 | 39 4, 2, 1, 0.5f, 0.25f, 0.125f, 0 |
40 }; | 40 }; |
41 | 41 |
42 canvas->translate(5, 5); | 42 canvas->translate(5, 5); |
43 for (int i = 0; i < 8; ++i) { | 43 for (int i = 0; i < 8; ++i) { |
44 canvas->save(); | 44 canvas->save(); |
45 canvas->translate(i*0.125f, i*30.0f); | 45 canvas->translate(i*0.125f, i*30.0f); |
46 for (size_t j = 0; j < SK_ARRAY_COUNT(gStrokeWidths); ++j) { | 46 for (size_t j = 0; j < SK_ARRAY_COUNT(gStrokeWidths); ++j) { |
47 paint.setStrokeWidth(gStrokeWidths[j]); | 47 paint.setStrokeWidth(gStrokeWidths[j]); |
48 canvas->drawRect(rect, paint); | 48 canvas->drawRect(rect, paint); |
(...skipping 19 matching lines...) Expand all Loading... |
68 } | 68 } |
69 | 69 |
70 private: | 70 private: |
71 typedef GM INHERITED; | 71 typedef GM INHERITED; |
72 }; | 72 }; |
73 | 73 |
74 ////////////////////////////////////////////////////////////////////////////// | 74 ////////////////////////////////////////////////////////////////////////////// |
75 | 75 |
76 DEF_GM(return new ThinStrokedRectsGM;) | 76 DEF_GM(return new ThinStrokedRectsGM;) |
77 } | 77 } |
OLD | NEW |