blob: d39fd0e6d4a2d9625af13304aa769c77d7883c7d [file] [log] [blame]
caryclark@google.com9e49fb62012-08-27 14:11:33 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
caryclark@google.comd88e0892012-03-27 13:23:51 +00007#include "SkPath.h"
8
9void contourBounds(const SkPath& path, SkTDArray<SkRect>& boundsArray);
10void simplify(const SkPath& path, bool asFill, SkPath& simple);
caryclark@google.com65f9f0a2012-05-23 18:09:25 +000011void simplifyx(const SkPath& path, SkPath& simple);
caryclark@google.comd88e0892012-03-27 13:23:51 +000012
caryclark@google.com47580692012-07-23 12:14:49 +000013// FIXME: remove this section once debugging is complete
14extern const bool gRunTestsInOneThread;
15#ifdef SK_DEBUG
16extern int gDebugMaxWindSum;
17extern int gDebugMaxWindValue;
18#endif