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" |
(...skipping 28 matching lines...) Expand all Loading... |
39 * Test calling SkStroker for rectangles. Cases to cover: | 39 * Test calling SkStroker for rectangles. Cases to cover: |
40 * | 40 * |
41 * geometry: normal, small (smaller than stroke-width), empty, inverted | 41 * geometry: normal, small (smaller than stroke-width), empty, inverted |
42 * joint-type for the corners | 42 * joint-type for the corners |
43 */ | 43 */ |
44 class StrokeRectGM : public skiagm::GM { | 44 class StrokeRectGM : public skiagm::GM { |
45 public: | 45 public: |
46 StrokeRectGM() {} | 46 StrokeRectGM() {} |
47 | 47 |
48 protected: | 48 protected: |
49 uint32_t onGetFlags() const SK_OVERRIDE { | |
50 return kSkipTiled_Flag; | |
51 } | |
52 | 49 |
53 SkString onShortName() SK_OVERRIDE { | 50 SkString onShortName() SK_OVERRIDE { |
54 return SkString("strokerect"); | 51 return SkString("strokerect"); |
55 } | 52 } |
56 | 53 |
57 SkISize onISize() SK_OVERRIDE { | 54 SkISize onISize() SK_OVERRIDE { |
58 return SkISize::Make(1024, 740); | 55 return SkISize::Make(1024, 740); |
59 } | 56 } |
60 | 57 |
61 void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 58 void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 } | 104 } |
108 } | 105 } |
109 | 106 |
110 private: | 107 private: |
111 typedef GM INHERITED; | 108 typedef GM INHERITED; |
112 }; | 109 }; |
113 | 110 |
114 ////////////////////////////////////////////////////////////////////////////////
/////////////////// | 111 ////////////////////////////////////////////////////////////////////////////////
/////////////////// |
115 | 112 |
116 DEF_GM(return new StrokeRectGM;) | 113 DEF_GM(return new StrokeRectGM;) |
OLD | NEW |