speculatively comment out chrome mac perf test crasher
authorcaryclark <caryclark@google.com>
Thu, 4 Feb 2016 19:35:06 +0000 (11:35 -0800)
committerCommit bot <commit-bot@chromium.org>
Thu, 4 Feb 2016 19:35:06 +0000 (11:35 -0800)
The Chrome Mac perf buildbot is mysteriously crashing.
Maybe it's related to this line of code.

Try taking it out to see if the crash goes away.

R=bsalomon@google.com
BUG=580313
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1663673006

Review URL: https://codereview.chromium.org/1663673006

src/gpu/GrBlurUtils.cpp

index 8a8ab78..8658658 100644 (file)
@@ -287,7 +287,9 @@ void GrBlurUtils::drawPathWithMaskFilter(GrContext* context,
     SkASSERT(!pathIsMutable || origSrcPath.isVolatile());
 
     GrStrokeInfo strokeInfo(paint);
-    strokeInfo.setResScale(SkDraw::ComputeResScaleForStroking(origViewMatrix));
+    // comment out the line below to determine if it is the reason that the chrome mac perf bot
+    // has begun crashing
+    // strokeInfo.setResScale(SkDraw::ComputeResScaleForStroking(origViewMatrix));
 
     // If we have a prematrix, apply it to the path, optimizing for the case
     // where the original path can in fact be modified in place (even though