blob: 9e7ad7348e2a8584286128de8834ff7c2c8bb9ff [file] [log] [blame]
caryclark@google.com9166dcb2013-04-08 11:50:00 +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#include "SkPathOpsCubic.h"
8
9extern const SkDCubic pointDegenerates[];
10extern const SkDCubic notPointDegenerates[];
11extern const SkDCubic tests[][2];
12extern SkDCubic hexTests[][2];
13
14extern void convert_testx();
15
16extern const SkDCubic lines[];
17extern const SkDCubic notLines[];
18extern const SkDCubic modEpsilonLines[];
19extern const SkDCubic lessEpsilonLines[];
20extern const SkDCubic negEpsilonLines[];
21
22extern const size_t pointDegenerates_count;
23extern const size_t notPointDegenerates_count;
24extern const size_t tests_count;
25extern const size_t hexTests_count;
26extern const size_t lines_count;
27extern const size_t notLines_count;
28extern const size_t modEpsilonLines_count;
29extern const size_t lessEpsilonLines_count;
30extern const size_t negEpsilonLines_count;