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

Unified Diff: src/effects/SkCornerPathEffect.cpp

Issue 1138263002: Revert of stop calling SkScalarDiv (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 months 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
« no previous file with comments | « src/device/xps/SkXPSDevice.cpp ('k') | src/effects/SkDashPathEffect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/effects/SkCornerPathEffect.cpp
diff --git a/src/effects/SkCornerPathEffect.cpp b/src/effects/SkCornerPathEffect.cpp
index 4b81f261fe669416f260f9b50669ec3a87878ffd..79d4c4cbd3a1710d1bea4f3e56a10a5d1328d834 100644
--- a/src/effects/SkCornerPathEffect.cpp
+++ b/src/effects/SkCornerPathEffect.cpp
@@ -20,12 +20,13 @@
SkPoint* step) {
SkScalar dist = SkPoint::Distance(a, b);
- *step = b - a;
+ step->set(b.fX - a.fX, b.fY - a.fY);
+
if (dist <= radius * 2) {
- *step *= SK_ScalarHalf;
+ step->scale(SK_ScalarHalf);
return false;
} else {
- *step *= radius / dist;
+ step->scale(SkScalarDiv(radius, dist));
return true;
}
}
@@ -46,7 +47,6 @@
bool prevIsValid = true;
// to avoid warnings
- step.set(0, 0);
moveTo.set(0, 0);
firstStep.set(0, 0);
lastCorner.set(0, 0);
« no previous file with comments | « src/device/xps/SkXPSDevice.cpp ('k') | src/effects/SkDashPathEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698