OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 #include "gm.h" | 7 #include "gm.h" |
8 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
9 #include "SkPaint.h" | 9 #include "SkPaint.h" |
10 #include "SkRandom.h" | 10 #include "SkRandom.h" |
11 | 11 |
12 namespace skiagm { | 12 namespace skiagm { |
13 | 13 |
14 class LinePathGM : public GM { | 14 class LinePathGM : public GM { |
15 public: | 15 public: |
16 LinePathGM() {} | 16 LinePathGM() {} |
17 | 17 |
18 protected: | 18 protected: |
19 uint32_t onGetFlags() const SK_OVERRIDE { | |
20 return kSkipTiled_Flag; | |
21 } | |
22 | 19 |
23 SkString onShortName() { | 20 SkString onShortName() { |
24 return SkString("linepath"); | 21 return SkString("linepath"); |
25 } | 22 } |
26 | 23 |
27 SkISize onISize() { return SkISize::Make(1240, 390); } | 24 SkISize onISize() { return SkISize::Make(1240, 390); } |
28 | 25 |
29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, | 26 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, |
30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, | 27 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, |
31 SkPaint::Style style, SkPath::FillType fill, | 28 SkPaint::Style style, SkPath::FillType fill, |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 | 301 |
305 ////////////////////////////////////////////////////////////////////////////// | 302 ////////////////////////////////////////////////////////////////////////////// |
306 | 303 |
307 static GM* LinePathFactory(void*) { return new LinePathGM; } | 304 static GM* LinePathFactory(void*) { return new LinePathGM; } |
308 static GMRegistry regLinePath(LinePathFactory); | 305 static GMRegistry regLinePath(LinePathFactory); |
309 | 306 |
310 static GM* LineClosePathFactory(void*) { return new LineClosePathGM; } | 307 static GM* LineClosePathFactory(void*) { return new LineClosePathGM; } |
311 static GMRegistry regLineClosePath(LineClosePathFactory); | 308 static GMRegistry regLineClosePath(LineClosePathFactory); |
312 | 309 |
313 } | 310 } |
OLD | NEW |