47580694fb
git-svn-id: http://skia.googlecode.com/svn/trunk@4713 2bbb7eff-a529-9590-31e7-b0007b416f81
13 lines
390 B
C
13 lines
390 B
C
#include "SkPath.h"
|
|
|
|
void contourBounds(const SkPath& path, SkTDArray<SkRect>& boundsArray);
|
|
void simplify(const SkPath& path, bool asFill, SkPath& simple);
|
|
void simplifyx(const SkPath& path, SkPath& simple);
|
|
|
|
// FIXME: remove this section once debugging is complete
|
|
extern const bool gRunTestsInOneThread;
|
|
#ifdef SK_DEBUG
|
|
extern int gDebugMaxWindSum;
|
|
extern int gDebugMaxWindValue;
|
|
#endif
|