Index: include/core/SkPath.h |
diff --git a/include/core/SkPath.h b/include/core/SkPath.h |
index 3c68ff7d845bc7511234653d96994d7114998ad2..33db8ac24962d24eb276558e5dfd5ad3fbe1c0cd 100644 |
--- a/include/core/SkPath.h |
+++ b/include/core/SkPath.h |
@@ -540,6 +540,13 @@ public: |
} |
/** |
+ * Chop a conic into N quads, stored continguously in pts[], where |
+ * N = 1 << pow2. The amount of storage needed is (1 + 2 * N) |
+ */ |
+ static int ConvertConicToQuads(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2, |
+ SkScalar w, SkPoint pts[], int pow2); |
+ |
+ /** |
* Returns true if the path specifies a rectangle. |
* |
* If this returns false, then all output parameters are ignored, and left |