3350c3c68a
this fixes quad/line intersection git-svn-id: http://skia.googlecode.com/svn/trunk@5277 2bbb7eff-a529-9590-31e7-b0007b416f81
57 lines
1.5 KiB
C++
57 lines
1.5 KiB
C++
#include "CubicIntersection_TestData.h"
|
|
#include "Intersection_Tests.h"
|
|
#include "SkTypes.h"
|
|
|
|
void cubecode_test(int test);
|
|
|
|
#define TEST_QUADS_FIRST 0
|
|
|
|
void Intersection_Tests() {
|
|
int testsRun = 0;
|
|
// SimplifyAngle_Test();
|
|
SimplifyNew_Test();
|
|
Simplify4x4QuadraticsThreaded_Test(testsRun);
|
|
QuadLineIntersectThreaded_Test(testsRun);
|
|
LineQuadraticIntersection_Test();
|
|
Simplify4x4RectsThreaded_Test(testsRun);
|
|
SimplifyNondegenerate4x4TrianglesThreaded_Test(testsRun);
|
|
SimplifyDegenerate4x4TrianglesThreaded_Test(testsRun);
|
|
Simplify4x4QuadralateralsThreaded_Test(testsRun);
|
|
SkDebugf("%s total testsRun=%d\n", __FUNCTION__, testsRun);
|
|
SimplifyFindNext_Test();
|
|
SimplifyFindTop_Test();
|
|
QuadraticReduceOrder_Test();
|
|
QuadraticBezierClip_Test();
|
|
QuadraticIntersection_Test();
|
|
SimplifyAddIntersectingTs_Test();
|
|
|
|
cubecode_test(1);
|
|
convert_testx();
|
|
// tests are in dependency / complexity order
|
|
Inline_Tests();
|
|
ConvexHull_Test();
|
|
ConvexHull_X_Test();
|
|
|
|
LineParameter_Test();
|
|
LineIntersection_Test();
|
|
LineCubicIntersection_Test();
|
|
|
|
SimplifyQuadraticPaths_Test();
|
|
|
|
SimplifyPolygonPaths_Test();
|
|
SimplifyRectangularPaths_Test();
|
|
SimplifyQuadralateralPaths_Test();
|
|
|
|
ActiveEdge_Test();
|
|
|
|
QuadraticCoincidence_Test();
|
|
QuadraticIntersection_Test();
|
|
|
|
CubicParameterization_Test();
|
|
CubicCoincidence_Test();
|
|
CubicReduceOrder_Test();
|
|
CubicBezierClip_Test();
|
|
CubicIntersection_Test();
|
|
|
|
}
|