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 "SampleCode.h" | 8 #include "SampleCode.h" |
9 #include "SkBlurMask.h" | 9 #include "SkBlurMask.h" |
10 #include "SkView.h" | 10 #include "SkView.h" |
11 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
12 #include "SkColorShader.h" | 12 #include "SkColorShader.h" |
13 #include "SkEmbossMaskFilter.h" | 13 #include "SkEmbossMaskFilter.h" |
14 #include "SkGradientShader.h" | 14 #include "SkGradientShader.h" |
15 #include "SkGraphics.h" | 15 #include "SkGraphics.h" |
16 #include "SkImageDecoder.h" | |
17 #include "SkPath.h" | 16 #include "SkPath.h" |
18 #include "SkRandom.h" | 17 #include "SkRandom.h" |
19 #include "SkRegion.h" | 18 #include "SkRegion.h" |
20 #include "SkShader.h" | 19 #include "SkShader.h" |
21 #include "SkUtils.h" | 20 #include "SkUtils.h" |
22 #include "SkColorPriv.h" | 21 #include "SkColorPriv.h" |
23 #include "SkColorFilter.h" | 22 #include "SkColorFilter.h" |
24 #include "SkTime.h" | 23 #include "SkTime.h" |
25 #include "SkTypeface.h" | 24 #include "SkTypeface.h" |
26 #include "SkXfermode.h" | 25 #include "SkXfermode.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 62 |
64 private: | 63 private: |
65 | 64 |
66 typedef SampleView INHERITED; | 65 typedef SampleView INHERITED; |
67 }; | 66 }; |
68 | 67 |
69 ////////////////////////////////////////////////////////////////////////////// | 68 ////////////////////////////////////////////////////////////////////////////// |
70 | 69 |
71 static SkView* MyFactory() { return new EmbossView; } | 70 static SkView* MyFactory() { return new EmbossView; } |
72 static SkViewRegister reg(MyFactory); | 71 static SkViewRegister reg(MyFactory); |
OLD | NEW |