OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
4 * | 3 * |
5 * 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 |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 #ifndef SkPictureFlat_DEFINED | 7 #ifndef SkPictureFlat_DEFINED |
9 #define SkPictureFlat_DEFINED | 8 #define SkPictureFlat_DEFINED |
10 | 9 |
11 | 10 |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 bool fReady; | 564 bool fReady; |
566 | 565 |
567 // For index -> SkFlatData. 0-based, while all indices in the API are 1-bas
ed. Careful! | 566 // For index -> SkFlatData. 0-based, while all indices in the API are 1-bas
ed. Careful! |
568 SkTDArray<const SkFlatData*> fIndexedData; | 567 SkTDArray<const SkFlatData*> fIndexedData; |
569 | 568 |
570 // For SkFlatData -> cached SkFlatData, which has index(). | 569 // For SkFlatData -> cached SkFlatData, which has index(). |
571 SkTDynamicHash<SkFlatData, SkFlatData, SkFlatData::HashTraits> fHash; | 570 SkTDynamicHash<SkFlatData, SkFlatData, SkFlatData::HashTraits> fHash; |
572 }; | 571 }; |
573 | 572 |
574 #endif | 573 #endif |
OLD | NEW |