caryclark@google.com | 818b0cc | 2013-04-08 11:50:46 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
caryclark | 26ad22a | 2015-10-16 09:03:38 -0700 | [diff] [blame] | 10 | #include "SkPathOpsQuad.h" |
caryclark@google.com | d892bd8 | 2013-06-17 14:10:36 +0000 | [diff] [blame] | 11 | #include "SkTArray.h" |
caryclark@google.com | 818b0cc | 2013-04-08 11:50:46 +0000 | [diff] [blame] | 12 | |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 13 | struct SkPathOpsBounds; |
| 14 | |
caryclark | e4097e3 | 2014-06-18 07:24:19 -0700 | [diff] [blame] | 15 | void CubicPathToQuads(const SkPath& cubicPath, SkPath* quadPath); |
| 16 | void CubicPathToSimple(const SkPath& cubicPath, SkPath* simplePath); |
caryclark@google.com | d892bd8 | 2013-06-17 14:10:36 +0000 | [diff] [blame] | 17 | void CubicToQuads(const SkDCubic& cubic, double precision, SkTArray<SkDQuad, true>& quads); |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 18 | bool ValidBounds(const SkPathOpsBounds& ); |
| 19 | bool ValidConic(const SkDConic& cubic); |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 20 | bool ValidCubic(const SkDCubic& cubic); |
| 21 | bool ValidLine(const SkDLine& line); |
| 22 | bool ValidPoint(const SkDPoint& pt); |
| 23 | bool ValidPoints(const SkPoint* pts, int count); |
| 24 | bool ValidQuad(const SkDQuad& quad); |
caryclark@google.com | 8d0a524 | 2013-07-16 16:11:16 +0000 | [diff] [blame] | 25 | bool ValidVector(const SkDVector& v); |
caryclark@google.com | 818b0cc | 2013-04-08 11:50:46 +0000 | [diff] [blame] | 26 | |
| 27 | #endif |