| 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 "SkMutex.h" | 18 #include "../private/SkMutex.h" |
| 19 #include "SkPathEffect.h" | 19 #include "SkPathEffect.h" |
| 20 #include "SkTypes.h" | 20 #include "SkTypes.h" |
| 21 | 21 |
| 22 struct GrBatchAtlasConfig; | 22 struct GrBatchAtlasConfig; |
| 23 class GrBatchFontCache; | 23 class GrBatchFontCache; |
| 24 class GrCaps; | 24 class GrCaps; |
| 25 struct GrContextOptions; | 25 struct GrContextOptions; |
| 26 class GrDrawContext; | 26 class GrDrawContext; |
| 27 class GrDrawTarget; | 27 class GrDrawTarget; |
| 28 class GrFragmentProcessor; | 28 class GrFragmentProcessor; |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 /** | 483 /** |
| 484 * A callback similar to the above for use by the TextBlobCache | 484 * A callback similar to the above for use by the TextBlobCache |
| 485 * TODO move textblob draw calls below context so we can use the call above. | 485 * TODO move textblob draw calls below context so we can use the call above. |
| 486 */ | 486 */ |
| 487 static void TextBlobCacheOverBudgetCB(void* data); | 487 static void TextBlobCacheOverBudgetCB(void* data); |
| 488 | 488 |
| 489 typedef SkRefCnt INHERITED; | 489 typedef SkRefCnt INHERITED; |
| 490 }; | 490 }; |
| 491 | 491 |
| 492 #endif | 492 #endif |
| OLD | NEW |