| 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 "GrColor.h" | 11 #include "GrColor.h" |
| 12 #include "GrAARectRenderer.h" | |
| 13 #include "GrClipData.h" | 12 #include "GrClipData.h" |
| 14 #include "SkMatrix.h" | 13 #include "SkMatrix.h" |
| 15 #include "GrPaint.h" | 14 #include "GrPaint.h" |
| 16 #include "GrPathRendererChain.h" | 15 #include "GrPathRendererChain.h" |
| 17 #include "GrPoint.h" | 16 #include "GrPoint.h" |
| 18 #include "GrRenderTarget.h" | 17 #include "GrRenderTarget.h" |
| 19 #include "GrRefCnt.h" | 18 #include "GrRefCnt.h" |
| 20 #include "GrTexture.h" | 19 #include "GrTexture.h" |
| 21 | 20 |
| 21 class GrAARectRenderer; |
| 22 class GrAutoScratchTexture; | 22 class GrAutoScratchTexture; |
| 23 class GrDrawState; | 23 class GrDrawState; |
| 24 class GrDrawTarget; | 24 class GrDrawTarget; |
| 25 class GrEffect; | 25 class GrEffect; |
| 26 class GrFontCache; | 26 class GrFontCache; |
| 27 class GrGpu; | 27 class GrGpu; |
| 28 class GrIndexBuffer; | 28 class GrIndexBuffer; |
| 29 class GrIndexBufferAllocPool; | 29 class GrIndexBufferAllocPool; |
| 30 class GrInOrderDrawBuffer; | 30 class GrInOrderDrawBuffer; |
| 31 class GrOvalRenderer; | 31 class GrOvalRenderer; |
| (...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 } | 1017 } |
| 1018 | 1018 |
| 1019 GrTexture* texture() { return fTexture; } | 1019 GrTexture* texture() { return fTexture; } |
| 1020 | 1020 |
| 1021 private: | 1021 private: |
| 1022 GrContext* fContext; | 1022 GrContext* fContext; |
| 1023 GrTexture* fTexture; | 1023 GrTexture* fTexture; |
| 1024 }; | 1024 }; |
| 1025 | 1025 |
| 1026 #endif | 1026 #endif |
| OLD | NEW |