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 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkPath.h" | 10 #include "SkPath.h" |
11 | 11 |
12 class CircularClipsGM : public skiagm::GM { | 12 class CircularClipsGM : public skiagm::GM { |
13 SkScalar fX1, fX2, fY, fR; | 13 SkScalar fX1, fX2, fY, fR; |
14 SkPath fCircle1, fCircle2; | 14 SkPath fCircle1, fCircle2; |
15 | 15 |
16 public: | 16 public: |
17 CircularClipsGM() { | 17 CircularClipsGM() { |
18 fX1 = 80; | 18 fX1 = 80; |
19 fX2 = 120; | 19 fX2 = 120; |
20 fY = 50; | 20 fY = 50; |
21 fR = 40; | 21 fR = 40; |
22 | 22 |
23 fCircle1.addCircle(fX1, fY, fR, SkPath::kCW_Direction); | 23 fCircle1.addCircle(fX1, fY, fR, SkPath::kCW_Direction); |
24 fCircle2.addCircle(fX2, fY, fR, SkPath::kCW_Direction); | 24 fCircle2.addCircle(fX2, fY, fR, SkPath::kCW_Direction); |
25 } | 25 } |
26 | 26 |
27 protected: | 27 protected: |
28 uint32_t onGetFlags() const SK_OVERRIDE { | |
29 return kSkipTiled_Flag; | |
30 } | |
31 | 28 |
32 bool runAsBench() const SK_OVERRIDE { return true; } | 29 bool runAsBench() const SK_OVERRIDE { return true; } |
33 | 30 |
34 SkString onShortName() SK_OVERRIDE { | 31 SkString onShortName() SK_OVERRIDE { |
35 return SkString("circular-clips"); | 32 return SkString("circular-clips"); |
36 } | 33 } |
37 | 34 |
38 SkISize onISize() SK_OVERRIDE { | 35 SkISize onISize() SK_OVERRIDE { |
39 return SkISize::Make(800, 600); | 36 return SkISize::Make(800, 600); |
40 } | 37 } |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 73 } |
77 } | 74 } |
78 | 75 |
79 private: | 76 private: |
80 typedef skiagm::GM INHERITED; | 77 typedef skiagm::GM INHERITED; |
81 }; | 78 }; |
82 | 79 |
83 ////////////////////////////////////////////////////////////////////////////// | 80 ////////////////////////////////////////////////////////////////////////////// |
84 | 81 |
85 DEF_GM( return new CircularClipsGM; ) | 82 DEF_GM( return new CircularClipsGM; ) |
OLD | NEW |