| 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 "GrRenderTarget.h" | 15 #include "GrRenderTarget.h" |
| 16 #include "GrTexture.h" | 16 #include "GrTexture.h" |
| 17 #include "SkMatrix.h" | 17 #include "SkMatrix.h" |
| 18 #include "SkPathEffect.h" |
| 18 #include "SkTypes.h" | 19 #include "SkTypes.h" |
| 19 | 20 |
| 20 class GrAARectRenderer; | 21 class GrAARectRenderer; |
| 21 class GrAutoScratchTexture; | 22 class GrAutoScratchTexture; |
| 22 class GrCacheable; | 23 class GrCacheable; |
| 23 class GrDrawState; | 24 class GrDrawState; |
| 24 class GrDrawTarget; | 25 class GrDrawTarget; |
| 25 class GrEffect; | 26 class GrEffect; |
| 26 class GrFontCache; | 27 class GrFontCache; |
| 27 class GrGpu; | 28 class GrGpu; |
| (...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 } | 1129 } |
| 1129 | 1130 |
| 1130 GrTexture* texture() { return fTexture; } | 1131 GrTexture* texture() { return fTexture; } |
| 1131 | 1132 |
| 1132 private: | 1133 private: |
| 1133 GrContext* fContext; | 1134 GrContext* fContext; |
| 1134 GrTexture* fTexture; | 1135 GrTexture* fTexture; |
| 1135 }; | 1136 }; |
| 1136 | 1137 |
| 1137 #endif | 1138 #endif |
| OLD | NEW |