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 "gm.h" | 8 #include "gm.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkPath.h" | 10 #include "SkPath.h" |
11 #include "SkParsePath.h" | 11 #include "SkParsePath.h" |
12 #include "SkDashPathEffect.h" | 12 #include "SkDashPathEffect.h" |
13 | 13 |
14 /* | 14 /* |
15 * Inspired by http://code.google.com/p/chromium/issues/detail?id=112145 | 15 * Inspired by http://code.google.com/p/chromium/issues/detail?id=112145 |
16 */ | 16 */ |
17 | 17 |
18 class DashCubicsGM : public skiagm::GM { | 18 class DashCubicsGM : public skiagm::GM { |
19 public: | 19 public: |
20 DashCubicsGM() {} | 20 DashCubicsGM() {} |
21 | 21 |
22 protected: | 22 protected: |
23 uint32_t onGetFlags() const SK_OVERRIDE { | |
24 return kSkipTiled_Flag; | |
25 } | |
26 | 23 |
27 virtual SkString onShortName() { | 24 virtual SkString onShortName() { |
28 return SkString("dashcubics"); | 25 return SkString("dashcubics"); |
29 } | 26 } |
30 | 27 |
31 virtual SkISize onISize() { | 28 virtual SkISize onISize() { |
32 return SkISize::Make(640, 480); | 29 return SkISize::Make(640, 480); |
33 } | 30 } |
34 | 31 |
35 virtual void onDraw(SkCanvas* canvas) { | 32 virtual void onDraw(SkCanvas* canvas) { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 } | 65 } |
69 | 66 |
70 private: | 67 private: |
71 typedef GM INHERITED; | 68 typedef GM INHERITED; |
72 }; | 69 }; |
73 | 70 |
74 ////////////////////////////////////////////////////////////////////////////// | 71 ////////////////////////////////////////////////////////////////////////////// |
75 | 72 |
76 static skiagm::GM* MyFactory(void*) { return new DashCubicsGM; } | 73 static skiagm::GM* MyFactory(void*) { return new DashCubicsGM; } |
77 static skiagm::GMRegistry reg(MyFactory); | 74 static skiagm::GMRegistry reg(MyFactory); |
OLD | NEW |