| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 /* | 3 /* |
| 4 * Copyright 2006 The Android Open Source Project | 4 * Copyright 2006 The Android Open Source Project |
| 5 * | 5 * |
| 6 * Use of this source code is governed by a BSD-style license that can be | 6 * Use of this source code is governed by a BSD-style license that can be |
| 7 * found in the LICENSE file. | 7 * found in the LICENSE file. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 | 1120 |
| 1121 friend class SkAutoGlyphCache; | 1121 friend class SkAutoGlyphCache; |
| 1122 friend class SkAutoGlyphCacheNoGamma; | 1122 friend class SkAutoGlyphCacheNoGamma; |
| 1123 friend class SkCanvas; | 1123 friend class SkCanvas; |
| 1124 friend class SkDraw; | 1124 friend class SkDraw; |
| 1125 friend class SkGraphics; // So Term() can be called. | 1125 friend class SkGraphics; // So Term() can be called. |
| 1126 friend class SkPDFDevice; | 1126 friend class SkPDFDevice; |
| 1127 friend class GrBitmapTextContext; | 1127 friend class GrBitmapTextContext; |
| 1128 friend class GrDistanceFieldTextContext; | 1128 friend class GrDistanceFieldTextContext; |
| 1129 friend class GrStencilAndCoverTextContext; | 1129 friend class GrStencilAndCoverTextContext; |
| 1130 friend class GrPathRendering; |
| 1131 friend class GrGLPathRendering; |
| 1130 friend class SkTextToPathIter; | 1132 friend class SkTextToPathIter; |
| 1131 friend class SkCanonicalizePaint; | 1133 friend class SkCanonicalizePaint; |
| 1132 | 1134 |
| 1133 #ifdef SK_BUILD_FOR_ANDROID | 1135 #ifdef SK_BUILD_FOR_ANDROID |
| 1134 // In order for the == operator to work properly this must be the last field | 1136 // In order for the == operator to work properly this must be the last field |
| 1135 // in the struct so that we can do a memcmp to this field's offset. | 1137 // in the struct so that we can do a memcmp to this field's offset. |
| 1136 uint32_t fGenerationID; | 1138 uint32_t fGenerationID; |
| 1137 #endif | 1139 #endif |
| 1138 }; | 1140 }; |
| 1139 | 1141 |
| 1140 #endif | 1142 #endif |
| OLD | NEW |