OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 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 #ifndef GrTextContext_DEFINED | 8 #ifndef GrTextContext_DEFINED |
9 #define GrTextContext_DEFINED | 9 #define GrTextContext_DEFINED |
10 | 10 |
11 #include "GrPoint.h" | |
12 #include "GrGlyph.h" | 11 #include "GrGlyph.h" |
13 #include "GrPaint.h" | 12 #include "GrPaint.h" |
14 #include "SkDeviceProperties.h" | 13 #include "SkDeviceProperties.h" |
15 | 14 |
16 #include "SkPostConfig.h" | 15 #include "SkPostConfig.h" |
17 | 16 |
18 class GrContext; | 17 class GrContext; |
19 class GrDrawTarget; | 18 class GrDrawTarget; |
20 class GrFontScaler; | 19 class GrFontScaler; |
21 | 20 |
(...skipping 25 matching lines...) Expand all Loading... |
47 GrContext* fContext; | 46 GrContext* fContext; |
48 SkDeviceProperties fDeviceProperties; | 47 SkDeviceProperties fDeviceProperties; |
49 | 48 |
50 GrDrawTarget* fDrawTarget; | 49 GrDrawTarget* fDrawTarget; |
51 SkIRect fClipRect; | 50 SkIRect fClipRect; |
52 GrPaint fPaint; | 51 GrPaint fPaint; |
53 SkPaint fSkPaint; | 52 SkPaint fSkPaint; |
54 }; | 53 }; |
55 | 54 |
56 #endif | 55 #endif |
OLD | NEW |