Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(729)

Side by Side Diff: include/core/SkPicture.h

Issue 685113003: Enable distance field path rendering in Chrome. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698