xref: /aosp_15_r20/external/skia/tests/PathOpsCubicIntersectionTestData.h (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
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 #include "tests/PathOpsTestCommon.h"
8 
9 #include <cstddef>
10 
11 namespace PathOpsCubicIntersectionTestData {
12 
13 extern const CubicPts pointDegenerates[];
14 extern const CubicPts notPointDegenerates[];
15 extern const CubicPts tests[][2];
16 extern CubicPts hexTests[][2];
17 
18 extern const CubicPts lines[];
19 extern const CubicPts notLines[];
20 extern const CubicPts modEpsilonLines[];
21 extern const CubicPts lessEpsilonLines[];
22 extern const CubicPts negEpsilonLines[];
23 
24 extern const size_t pointDegenerates_count;
25 extern const size_t notPointDegenerates_count;
26 extern const size_t tests_count;
27 extern const size_t hexTests_count;
28 extern const size_t lines_count;
29 extern const size_t notLines_count;
30 extern const size_t modEpsilonLines_count;
31 extern const size_t lessEpsilonLines_count;
32 extern const size_t negEpsilonLines_count;
33 
34 }  // namespace PathOpsCubicIntersectionTestData
35