| 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 "SkBlurMaskFilter.h" | |
| 10 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 11 #include "SkGraphics.h" | 10 #include "SkGraphics.h" |
| 11 #include "SkRandom.h" |
| 12 #include "SkLayerDrawLooper.h" | 12 #include "SkLayerDrawLooper.h" |
| 13 #include "SkPath.h" | 13 #include "SkBlurMaskFilter.h" |
| 14 #include "SkRandom.h" | |
| 15 | 14 |
| 16 static SkRect inset(const SkRect& r) { | 15 static SkRect inset(const SkRect& r) { |
| 17 SkRect rect = r; | 16 SkRect rect = r; |
| 18 rect.inset(r.width() / 8, r.height() / 8); | 17 rect.inset(r.width() / 8, r.height() / 8); |
| 19 return rect; | 18 return rect; |
| 20 } | 19 } |
| 21 | 20 |
| 22 class PathInteriorGM : public skiagm::GM { | 21 class PathInteriorGM : public skiagm::GM { |
| 23 public: | 22 public: |
| 24 PathInteriorGM() { | 23 PathInteriorGM() { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 104 |
| 106 private: | 105 private: |
| 107 | 106 |
| 108 typedef GM INHERITED; | 107 typedef GM INHERITED; |
| 109 }; | 108 }; |
| 110 | 109 |
| 111 ////////////////////////////////////////////////////////////////////////////// | 110 ////////////////////////////////////////////////////////////////////////////// |
| 112 | 111 |
| 113 static skiagm::GM* MyFactory(void*) { return new PathInteriorGM; } | 112 static skiagm::GM* MyFactory(void*) { return new PathInteriorGM; } |
| 114 static skiagm::GMRegistry reg(MyFactory); | 113 static skiagm::GMRegistry reg(MyFactory); |
| OLD | NEW |