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 GrContext_DEFINED | 8 #ifndef GrContext_DEFINED |
9 #define GrContext_DEFINED | 9 #define GrContext_DEFINED |
10 | 10 |
11 #include "GrClipData.h" | 11 #include "GrClipData.h" |
12 #include "GrColor.h" | 12 #include "GrColor.h" |
13 #include "GrPaint.h" | 13 #include "GrPaint.h" |
14 #include "GrPathRendererChain.h" | 14 #include "GrPathRendererChain.h" |
15 #include "GrPoint.h" | |
16 #include "GrRenderTarget.h" | 15 #include "GrRenderTarget.h" |
17 #include "GrTexture.h" | 16 #include "GrTexture.h" |
18 #include "SkMatrix.h" | 17 #include "SkMatrix.h" |
19 #include "SkTypes.h" | 18 #include "SkTypes.h" |
20 | 19 |
21 class GrAARectRenderer; | 20 class GrAARectRenderer; |
22 class GrAutoScratchTexture; | 21 class GrAutoScratchTexture; |
23 class GrCacheable; | 22 class GrCacheable; |
24 class GrDrawState; | 23 class GrDrawState; |
25 class GrDrawTarget; | 24 class GrDrawTarget; |
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1123 } | 1122 } |
1124 | 1123 |
1125 GrTexture* texture() { return fTexture; } | 1124 GrTexture* texture() { return fTexture; } |
1126 | 1125 |
1127 private: | 1126 private: |
1128 GrContext* fContext; | 1127 GrContext* fContext; |
1129 GrTexture* fTexture; | 1128 GrTexture* fTexture; |
1130 }; | 1129 }; |
1131 | 1130 |
1132 #endif | 1131 #endif |
OLD | NEW |