| 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 | 9 |
| 10 namespace skiagm { | 10 namespace skiagm { |
| 11 | 11 |
| 12 // Draw rects with various stroke widths at 1/8 pixel increments | 12 // Draw rects with various stroke widths at 1/8 pixel increments |
| 13 class ThinStrokedRectsGM : public GM { | 13 class ThinStrokedRectsGM : public GM { |
| 14 public: | 14 public: |
| 15 ThinStrokedRectsGM() { | 15 ThinStrokedRectsGM() { |
| 16 this->setBGColor(0xFF000000); | 16 this->setBGColor(0xFF000000); |
| 17 } | 17 } |
| 18 | 18 |
| 19 protected: | 19 protected: |
| 20 virtual uint32_t onGetFlags() const SK_OVERRIDE { | |
| 21 return kSkipTiled_Flag; | |
| 22 } | |
| 23 | |
| 24 virtual SkString onShortName() SK_OVERRIDE { | 20 virtual SkString onShortName() SK_OVERRIDE { |
| 25 return SkString("thinstrokedrects"); | 21 return SkString("thinstrokedrects"); |
| 26 } | 22 } |
| 27 | 23 |
| 28 virtual SkISize onISize() SK_OVERRIDE { | 24 virtual SkISize onISize() SK_OVERRIDE { |
| 29 return SkISize::Make(240, 320); | 25 return SkISize::Make(240, 320); |
| 30 } | 26 } |
| 31 | 27 |
| 32 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 28 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
| 33 | 29 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 69 |
| 74 private: | 70 private: |
| 75 typedef GM INHERITED; | 71 typedef GM INHERITED; |
| 76 }; | 72 }; |
| 77 | 73 |
| 78 ////////////////////////////////////////////////////////////////////////////// | 74 ////////////////////////////////////////////////////////////////////////////// |
| 79 | 75 |
| 80 DEF_GM( return SkNEW(ThinStrokedRectsGM); ) | 76 DEF_GM( return SkNEW(ThinStrokedRectsGM); ) |
| 81 | 77 |
| 82 } | 78 } |
| OLD | NEW |