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 "SkRandom.h" | 9 #include "SkRandom.h" |
10 #include "SkRRect.h" | 10 #include "SkRRect.h" |
11 | 11 |
12 namespace skiagm { | 12 namespace skiagm { |
13 | 13 |
14 // Test out various combinations of nested rects, ovals and rrects. | 14 // Test out various combinations of nested rects, ovals and rrects. |
15 class NestedGM : public GM { | 15 class NestedGM : public GM { |
16 public: | 16 public: |
17 NestedGM(bool doAA) : fDoAA(doAA) { | 17 NestedGM(bool doAA) : fDoAA(doAA) { |
18 this->setBGColor(0xFFDDDDDD); | 18 this->setBGColor(0xFFDDDDDD); |
19 } | 19 } |
20 | 20 |
21 protected: | 21 protected: |
22 uint32_t onGetFlags() const SK_OVERRIDE { | |
23 return kSkipTiled_Flag; | |
24 } | |
25 | 22 |
26 SkString onShortName() SK_OVERRIDE { | 23 SkString onShortName() SK_OVERRIDE { |
27 SkString name("nested"); | 24 SkString name("nested"); |
28 if (fDoAA) { | 25 if (fDoAA) { |
29 name.append("_aa"); | 26 name.append("_aa"); |
30 } else { | 27 } else { |
31 name.append("_bw"); | 28 name.append("_bw"); |
32 } | 29 } |
33 return name; | 30 return name; |
34 } | 31 } |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 typedef GM INHERITED; | 117 typedef GM INHERITED; |
121 }; | 118 }; |
122 | 119 |
123 /////////////////////////////////////////////////////////////////////////////// | 120 /////////////////////////////////////////////////////////////////////////////// |
124 | 121 |
125 DEF_GM( return new NestedGM(true); ) | 122 DEF_GM( return new NestedGM(true); ) |
126 DEF_GM( return new NestedGM(false); ) | 123 DEF_GM( return new NestedGM(false); ) |
127 | 124 |
128 | 125 |
129 } | 126 } |
OLD | NEW |