blob: c7f405b19de802c5fecd06b9878e6fb0a76c04b8 [file] [log] [blame]
caryclark@google.comcd4421d2012-03-01 19:16:31 +00001
2
3#include "SkPath.h"
4
5extern void contourBounds(const SkPath& path, SkTDArray<SkRect>& boundsArray);
caryclark@google.com2e7f4c82012-03-20 21:11:59 +00006extern bool comparePaths(const SkPath& one, const SkPath& two);
caryclark@google.comcd4421d2012-03-01 19:16:31 +00007extern void comparePathsTiny(const SkPath& one, const SkPath& two);
caryclark@google.com752b60e2012-03-22 21:11:17 +00008extern bool drawAsciiPaths(const SkPath& one, const SkPath& two,
caryclark@google.com2e7f4c82012-03-20 21:11:59 +00009 bool drawPaths);
caryclark@google.comcd4421d2012-03-01 19:16:31 +000010extern void simplify(const SkPath& path, bool asFill, SkPath& simple);
caryclark@google.com2e7f4c82012-03-20 21:11:59 +000011extern void showPath(const SkPath& path, const char* str = NULL);
12extern bool testSimplify(const SkPath& path, bool fill, SkPath& out);