| Index: src/core/SkPictureAnalyzer.cpp
|
| diff --git a/src/core/SkPictureAnalyzer.cpp b/src/core/SkPictureAnalyzer.cpp
|
| index 9f62d1dafed3783fb001c70e0151af22086c0d77..b1d61aebbac513434b8cb4ec4b58433fa0d26118 100644
|
| --- a/src/core/SkPictureAnalyzer.cpp
|
| +++ b/src/core/SkPictureAnalyzer.cpp
|
| @@ -31,7 +31,7 @@ SkPictureGpuAnalyzer::SkPictureGpuAnalyzer(const sk_sp<SkPicture>& picture,
|
| }
|
|
|
| void SkPictureGpuAnalyzer::analyzePicture(const SkPicture* picture) {
|
| - if (!picture || veto_predicate(fNumSlowPaths)) {
|
| + if (!picture) {
|
| return;
|
| }
|
|
|
| @@ -39,10 +39,6 @@ void SkPictureGpuAnalyzer::analyzePicture(const SkPicture* picture) {
|
| }
|
|
|
| void SkPictureGpuAnalyzer::analyzeClipPath(const SkPath& path, SkRegion::Op op, bool doAntiAlias) {
|
| - if (veto_predicate(fNumSlowPaths)) {
|
| - return;
|
| - }
|
| -
|
| const SkRecords::ClipPath clipOp = {
|
| SkIRect::MakeEmpty(), // Willie don't care.
|
| path,
|
|
|