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 | 7 |
8 #include "gm.h" | 8 #include "gm.h" |
9 #include "SkBlurMask.h" | 9 #include "SkBlurMask.h" |
10 #include "SkBlurMaskFilter.h" | 10 #include "SkBlurMaskFilter.h" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 } | 92 } |
93 } | 93 } |
94 fLooper = looperBuilder.detachLooper(); | 94 fLooper = looperBuilder.detachLooper(); |
95 } | 95 } |
96 | 96 |
97 typedef GM INHERITED; | 97 typedef GM INHERITED; |
98 }; | 98 }; |
99 | 99 |
100 ////////////////////////////////////////////////////////////////////////////// | 100 ////////////////////////////////////////////////////////////////////////////// |
101 | 101 |
102 static skiagm::GM* MyFactory(void*) { return new DrawLooperGM; } | 102 DEF_GM( return new DrawLooperGM; ) |
103 static skiagm::GMRegistry reg(MyFactory); | |
OLD | NEW |