Chromium Code Reviews| Index: experimental/StrokePathRenderer/GrStrokePathRenderer.cpp |
| diff --git a/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp b/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp |
| index fbfc7654bb213cf41334ea9d53e60c73a048f950..6114cdaa220a564ebaa8ed7f2e3eed217e994f39 100644 |
| --- a/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp |
| +++ b/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp |
| @@ -11,9 +11,7 @@ |
| #include "SkPath.h" |
| #include "SkStrokeRec.h" |
| -namespace { |
| - |
| -bool is_clockwise(const SkVector& before, const SkVector& after) { |
| +static bool is_clockwise(const SkVector& before, const SkVector& after) { |
| return before.cross(after) > 0; |
| } |
| @@ -23,9 +21,9 @@ enum IntersectionType { |
| kOut_IntersectionType |
| }; |
| -IntersectionType intersection(const SkPoint& p1, const SkPoint& p2, |
| - const SkPoint& p3, const SkPoint& p4, |
| - SkPoint& res) { |
| +static IntersectionType intersection(const SkPoint& p1, const SkPoint& p2, |
| + const SkPoint& p3, const SkPoint& p4, |
|
robertphillips
2014/01/22 12:44:09
line "SkPoint& res" up with the rest of the lines?
tfarina
2014/01/23 02:02:39
Done.
|
| + SkPoint& res) { |
| // Store the values for fast access and easy |
| // equations-to-code conversion |
| SkScalar x1 = p1.x(), x2 = p2.x(), x3 = p3.x(), x4 = p4.x(); |
| @@ -52,8 +50,6 @@ IntersectionType intersection(const SkPoint& p1, const SkPoint& p2, |
| kOut_IntersectionType : kIn_IntersectionType; |
| } |
| -} // namespace |
| - |
| GrStrokePathRenderer::GrStrokePathRenderer() { |
| } |