OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 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 #include "gm.h" | 8 #include "gm.h" |
9 #include "SkRandom.h" | 9 #include "SkRandom.h" |
10 #include "SkTArray.h" | 10 #include "SkTArray.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 namespace skiagm { | 27 namespace skiagm { |
28 | 28 |
29 class ConvexPathsGM : public GM { | 29 class ConvexPathsGM : public GM { |
30 SkDoOnce fOnce; | 30 SkDoOnce fOnce; |
31 public: | 31 public: |
32 ConvexPathsGM() { | 32 ConvexPathsGM() { |
33 this->setBGColor(0xFF000000); | 33 this->setBGColor(0xFF000000); |
34 } | 34 } |
35 | 35 |
36 protected: | 36 protected: |
37 uint32_t onGetFlags() const SK_OVERRIDE { | |
38 return kSkipTiled_Flag; | |
39 } | |
40 | 37 |
41 virtual SkString onShortName() { | 38 virtual SkString onShortName() { |
42 return SkString("convexpaths"); | 39 return SkString("convexpaths"); |
43 } | 40 } |
44 | 41 |
45 | 42 |
46 virtual SkISize onISize() { | 43 virtual SkISize onISize() { |
47 return SkISize::Make(1200, 1100); | 44 return SkISize::Make(1200, 1100); |
48 } | 45 } |
49 | 46 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 typedef GM INHERITED; | 289 typedef GM INHERITED; |
293 SkTArray<SkPath> fPaths; | 290 SkTArray<SkPath> fPaths; |
294 }; | 291 }; |
295 | 292 |
296 ////////////////////////////////////////////////////////////////////////////// | 293 ////////////////////////////////////////////////////////////////////////////// |
297 | 294 |
298 static GM* MyFactory(void*) { return new ConvexPathsGM; } | 295 static GM* MyFactory(void*) { return new ConvexPathsGM; } |
299 static GMRegistry reg(MyFactory); | 296 static GMRegistry reg(MyFactory); |
300 | 297 |
301 } | 298 } |
OLD | NEW |