aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/StrokePathRenderer/GrStrokePathRenderer.cpp')
-rw-r--r--experimental/StrokePathRenderer/GrStrokePathRenderer.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp b/experimental/StrokePathRenderer/GrStrokePathRenderer.cpp
index fbfc7654bb..4b41dba5b1 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,
+ 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() {
}