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

Unified Diff: src/core/SkPath.cpp

Issue 2471133002: Set analytic AA as default. (Closed)
Patch Set: One more catch Created 4 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 side-by-side diff with in-line comments
Download patch
Index: src/core/SkPath.cpp
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp
index c1b63271938849b284daf766df9fde2be196e41f..626c8f5405d5f496d069cccc271777e79c5aedc6 100644
--- a/src/core/SkPath.cpp
+++ b/src/core/SkPath.cpp
@@ -1742,6 +1742,8 @@ void SkPath::transform(const SkMatrix& matrix, SkPath* dst) const {
dst->fIsVolatile = fIsVolatile;
}
+ dst->fConvexity = SkPath::kUnknown_Convexity;
reed1 2016/11/07 15:31:42 If we're going to leave this in for real, please a
liyuqian 2016/11/07 16:08:00 Done.
+
if (SkPathPriv::kUnknown_FirstDirection == fFirstDirection) {
dst->fFirstDirection = SkPathPriv::kUnknown_FirstDirection;
} else {

Powered by Google App Engine
This is Rietveld 408576698