OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2007 The Android Open Source Project | 3 * Copyright 2007 The Android Open Source Project |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 | 9 |
10 #ifndef SkPicture_DEFINED | 10 #ifndef SkPicture_DEFINED |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 explicit Analysis(const SkRecord&); | 299 explicit Analysis(const SkRecord&); |
300 | 300 |
301 bool suitableForGpuRasterization(const char** reason, int sampleCount) c
onst; | 301 bool suitableForGpuRasterization(const char** reason, int sampleCount) c
onst; |
302 | 302 |
303 bool fWillPlaybackBitmaps; | 303 bool fWillPlaybackBitmaps; |
304 bool fHasText; | 304 bool fHasText; |
305 int fNumPaintWithPathEffectUses; | 305 int fNumPaintWithPathEffectUses; |
306 int fNumFastPathDashEffects; | 306 int fNumFastPathDashEffects; |
307 int fNumAAConcavePaths; | 307 int fNumAAConcavePaths; |
308 int fNumAAHairlineConcavePaths; | 308 int fNumAAHairlineConcavePaths; |
| 309 int fNumAADFEligibleConcavePaths; |
309 } fAnalysis; | 310 } fAnalysis; |
310 }; | 311 }; |
311 | 312 |
312 #endif | 313 #endif |
OLD | NEW |