2012-08-27 14:11:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2012-03-27 13:23:51 +00:00
|
|
|
#include "SkPath.h"
|
|
|
|
|
|
|
|
void contourBounds(const SkPath& path, SkTDArray<SkRect>& boundsArray);
|
|
|
|
void simplify(const SkPath& path, bool asFill, SkPath& simple);
|
2012-05-23 18:09:25 +00:00
|
|
|
void simplifyx(const SkPath& path, SkPath& simple);
|
2012-03-27 13:23:51 +00:00
|
|
|
|
2012-07-23 12:14:49 +00:00
|
|
|
// FIXME: remove this section once debugging is complete
|
|
|
|
extern const bool gRunTestsInOneThread;
|
|
|
|
#ifdef SK_DEBUG
|
|
|
|
extern int gDebugMaxWindSum;
|
|
|
|
extern int gDebugMaxWindValue;
|
|
|
|
#endif
|