| 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 "GrClip.h" | 11 #include "GrClip.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 "GrTextureProvider.h" | 16 #include "GrTextureProvider.h" |
| 17 #include "SkMatrix.h" | 17 #include "SkMatrix.h" |
| 18 #include "SkPathEffect.h" | 18 #include "SkPathEffect.h" |
| 19 #include "SkTypes.h" | 19 #include "SkTypes.h" |
| 20 | 20 |
| 21 class GrAARectRenderer; | |
| 22 class GrBatchFontCache; | 21 class GrBatchFontCache; |
| 23 class GrCaps; | 22 class GrCaps; |
| 24 struct GrContextOptions; | 23 struct GrContextOptions; |
| 25 class GrDrawContext; | 24 class GrDrawContext; |
| 26 class GrDrawTarget; | 25 class GrDrawTarget; |
| 27 class GrFragmentProcessor; | 26 class GrFragmentProcessor; |
| 28 class GrGpu; | 27 class GrGpu; |
| 29 class GrGpuTraceMarker; | 28 class GrGpuTraceMarker; |
| 30 class GrIndexBuffer; | 29 class GrIndexBuffer; |
| 31 class GrLayerCache; | 30 class GrLayerCache; |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 /** | 461 /** |
| 463 * A callback similar to the above for use by the TextBlobCache | 462 * A callback similar to the above for use by the TextBlobCache |
| 464 * TODO move textblob draw calls below context so we can use the call above. | 463 * TODO move textblob draw calls below context so we can use the call above. |
| 465 */ | 464 */ |
| 466 static void TextBlobCacheOverBudgetCB(void* data); | 465 static void TextBlobCacheOverBudgetCB(void* data); |
| 467 | 466 |
| 468 typedef SkRefCnt INHERITED; | 467 typedef SkRefCnt INHERITED; |
| 469 }; | 468 }; |
| 470 | 469 |
| 471 #endif | 470 #endif |
| OLD | NEW |