blob: c449d1a4d8d3d159f26f61810461fd3756dd9ef5 [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.com2e7f4c82012-03-20 21:11:59 +00008extern void drawAsciiPaths(const SkPath& one, const SkPath& two,
9 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);