blob: 3fd79e1a5a09715373d69b2befcdd8db27b66ed9 [file] [log] [blame]
caryclark@google.com818b0cc2013-04-08 11:50:46 +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 */
7#ifndef PathOpsTestCommon_DEFINED
8#define PathOpsTestCommon_DEFINED
9
caryclark1049f122015-04-20 08:31:59 -070010#include "SkPathOpsConic.h"
caryclark@google.comd892bd82013-06-17 14:10:36 +000011#include "SkTArray.h"
caryclark@google.com818b0cc2013-04-08 11:50:46 +000012
caryclark@google.com8d0a5242013-07-16 16:11:16 +000013struct SkPathOpsBounds;
14
caryclarke4097e32014-06-18 07:24:19 -070015void CubicPathToQuads(const SkPath& cubicPath, SkPath* quadPath);
16void CubicPathToSimple(const SkPath& cubicPath, SkPath* simplePath);
caryclark@google.comd892bd82013-06-17 14:10:36 +000017void CubicToQuads(const SkDCubic& cubic, double precision, SkTArray<SkDQuad, true>& quads);
caryclark1049f122015-04-20 08:31:59 -070018bool ValidBounds(const SkPathOpsBounds& );
19bool ValidConic(const SkDConic& cubic);
caryclark@google.com8d0a5242013-07-16 16:11:16 +000020bool ValidCubic(const SkDCubic& cubic);
21bool ValidLine(const SkDLine& line);
22bool ValidPoint(const SkDPoint& pt);
23bool ValidPoints(const SkPoint* pts, int count);
24bool ValidQuad(const SkDQuad& quad);
caryclark@google.com8d0a5242013-07-16 16:11:16 +000025bool ValidVector(const SkDVector& v);
caryclark@google.com818b0cc2013-04-08 11:50:46 +000026
27#endif