aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-27 07:02:53 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-27 07:02:53 +0000
commit214c870f5e45f79bc5a8d695c55ec7b881535f4c (patch)
tree558a3a3fa68f093b4a7912f2cdb5921b119b9fa8
parentb16e247519b9b8ccff1c74cf31d0c59f42b6a5f2 (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@8886 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--include/pathops/SkPathOps.h8
-rw-r--r--src/core/SkGeometry.cpp1
2 files changed, 4 insertions, 5 deletions
diff --git a/include/pathops/SkPathOps.h b/include/pathops/SkPathOps.h
index ba602749e0..bde77e8732 100644
--- a/include/pathops/SkPathOps.h
+++ b/include/pathops/SkPathOps.h
@@ -24,10 +24,10 @@ enum SkPathOp {
/** Set this path to the result of applying the Op to this path and the
specified path: this = (this op operand).
The resulting path will be constructed from non-overlapping contours.
- The curve order is reduced where possible so that cubics may be turned
+ The curve order is reduced where possible so that cubics may be turned
into quadratics, and quadratics maybe turned into lines.
- Returns true if operation was able to produce a result;
+ Returns true if operation was able to produce a result;
otherwise, result is unmodified.
@param one The first operand (for difference, the minuend)
@@ -39,11 +39,11 @@ enum SkPathOp {
bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result);
/** Set this path to a set of non-overlapping contours that describe the
- same area as the original path.
+ same area as the original path.
The curve order is reduced where possible so that cubics may
be turned into quadratics, and quadratics maybe turned into lines.
- Returns true if operation was able to produce a result;
+ Returns true if operation was able to produce a result;
otherwise, result is unmodified.
@param path The path to simplify.
diff --git a/src/core/SkGeometry.cpp b/src/core/SkGeometry.cpp
index 14e4fa2bf7..6b525faea6 100644
--- a/src/core/SkGeometry.cpp
+++ b/src/core/SkGeometry.cpp
@@ -1664,4 +1664,3 @@ void SkConic::computeFastBounds(SkRect* bounds) const {
* a <-- w - 1 (where w >= 0)
* diff <-- a * (p0 - 2p1 + p2) / (4*(2 + a))
*/
-