OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 GrAtlasTextContext_DEFINED | 8 #ifndef GrAtlasTextContext_DEFINED |
9 #define GrAtlasTextContext_DEFINED | 9 #define GrAtlasTextContext_DEFINED |
10 | 10 |
11 #include "GrTextContext.h" | 11 #include "GrTextContext.h" |
12 | 12 |
13 #include "GrAtlasTextBlob.h" | 13 #include "GrAtlasTextBlob.h" |
14 #include "GrGeometryProcessor.h" | 14 #include "GrGeometryProcessor.h" |
15 #include "SkTextBlob.h" | 15 #include "SkTextBlobPriv.h" |
16 | 16 |
17 #ifdef GR_TEST_UTILS | 17 #ifdef GR_TEST_UTILS |
18 #include "GrBatchTest.h" | 18 #include "GrBatchTest.h" |
19 #endif | 19 #endif |
20 | 20 |
21 class GrDrawBatch; | 21 class GrDrawBatch; |
22 class GrDrawContext; | 22 class GrDrawContext; |
23 class GrDrawTarget; | 23 class GrDrawTarget; |
24 class GrPipelineBuilder; | 24 class GrPipelineBuilder; |
25 class GrTextBlobCache; | 25 class GrTextBlobCache; |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 friend class TextBatch; | 187 friend class TextBatch; |
188 | 188 |
189 #ifdef GR_TEST_UTILS | 189 #ifdef GR_TEST_UTILS |
190 DRAW_BATCH_TEST_FRIEND(TextBlobBatch); | 190 DRAW_BATCH_TEST_FRIEND(TextBlobBatch); |
191 #endif | 191 #endif |
192 | 192 |
193 typedef GrTextContext INHERITED; | 193 typedef GrTextContext INHERITED; |
194 }; | 194 }; |
195 | 195 |
196 #endif | 196 #endif |
OLD | NEW |