| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 #ifndef PathOpsTestCommon_DEFINED | 7 #ifndef PathOpsTestCommon_DEFINED |
| 8 #define PathOpsTestCommon_DEFINED | 8 #define PathOpsTestCommon_DEFINED |
| 9 | 9 |
| 10 #include "SkPathOpsQuad.h" | 10 #include "SkPathOpsQuad.h" |
| 11 #include "SkTDArray.h" | 11 #include "SkTArray.h" |
| 12 | 12 |
| 13 void CubicToQuads(const SkDCubic& cubic, double precision, SkTDArray<SkDQuad>& q
uads); | 13 void CubicToQuads(const SkDCubic& cubic, double precision, SkTArray<SkDQuad, tru
e>& quads); |
| 14 | 14 |
| 15 #endif | 15 #endif |
| OLD | NEW |