Index: src/gpu/GrShape.cpp |
diff --git a/src/gpu/GrShape.cpp b/src/gpu/GrShape.cpp |
index 93ecd6187a8ebce094ef47c1741286cf85424f1d..b40d696b824efb027df65d3c7944fc5dbed3097c 100644 |
--- a/src/gpu/GrShape.cpp |
+++ b/src/gpu/GrShape.cpp |
@@ -337,7 +337,7 @@ void GrShape::attemptToSimplifyPath() { |
this->style().strokeRec().getStyle() == SkStrokeRec::kHairline_Style) { |
// Stroke styles don't differentiate between winding and even/odd. |
// Moreover, dashing ignores inverseness (skbug.com/5421) |
- bool inverse = !this->fStyle.isDashed() && fPath.get()->isInverseFillType(); |
+ bool inverse = !this->style().isDashed() && fPath.get()->isInverseFillType(); |
if (inverse) { |
fPath.get()->setFillType(kDefaultPathInverseFillType); |
} else { |