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 "SkView.h" | 9 #include "SkView.h" |
10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
11 #include "SkReadBuffer.h" | 11 #include "SkReadBuffer.h" |
12 #include "SkWriteBuffer.h" | 12 #include "SkWriteBuffer.h" |
13 #include "SkGradientShader.h" | 13 #include "SkGradientShader.h" |
14 #include "SkGraphics.h" | 14 #include "SkGraphics.h" |
15 #include "SkImageDecoder.h" | |
16 #include "SkPath.h" | 15 #include "SkPath.h" |
17 #include "SkRandom.h" | 16 #include "SkRandom.h" |
18 #include "SkRegion.h" | 17 #include "SkRegion.h" |
19 #include "SkShader.h" | 18 #include "SkShader.h" |
20 #include "SkUtils.h" | 19 #include "SkUtils.h" |
21 #include "SkColorPriv.h" | 20 #include "SkColorPriv.h" |
22 #include "SkColorFilter.h" | 21 #include "SkColorFilter.h" |
23 #include "SkTime.h" | 22 #include "SkTime.h" |
24 #include "SkTypeface.h" | 23 #include "SkTypeface.h" |
25 #include "SkXfermode.h" | 24 #include "SkXfermode.h" |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 int fHints; | 161 int fHints; |
163 SkScalar fClickX; | 162 SkScalar fClickX; |
164 | 163 |
165 typedef SampleView INHERITED; | 164 typedef SampleView INHERITED; |
166 }; | 165 }; |
167 | 166 |
168 ////////////////////////////////////////////////////////////////////////////// | 167 ////////////////////////////////////////////////////////////////////////////// |
169 | 168 |
170 static SkView* MyFactory() { return new TextSpeedView; } | 169 static SkView* MyFactory() { return new TextSpeedView; } |
171 static SkViewRegister reg(MyFactory); | 170 static SkViewRegister reg(MyFactory); |
OLD | NEW |