Searched refs:tClipLimit (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicConvexHull.cpp14 static const double tClipLimit = 0.8; // http://cagd.cs.byu.edu/~tom/papers/bezclip.pdf see Multiple intersections variable
40 split = maxT1 - minT1 > tClipLimit;
44 split = (maxT2 - minT2 > tClipLimit) << 1;
104 split = (newMaxT1 - newMinT1 > (maxT1 - minT1) * tClipLimit) << 1;
116 split = newMaxT2 - newMinT2 > (maxT2 - minT2) * tClipLimit;
H A DQuadraticIntersection.cpp16 static const double tClipLimit = 0.8; // http://cagd.cs.byu.edu/~tom/papers/bezclip.pdf see Multiple intersections variable
45 split = maxT1 - minT1 > tClipLimit;
49 split = (maxT2 - minT2 > tClipLimit) << 1;
103 split = (newMaxT1 - newMinT1 > (maxT1 - minT1) * tClipLimit) << 1;
114 split = newMaxT2 - newMinT2 > (maxT2 - minT2) * tClipLimit;
/external/skia/experimental/Intersection/
H A DCubicConvexHull.cpp14 static const double tClipLimit = 0.8; // http://cagd.cs.byu.edu/~tom/papers/bezclip.pdf see Multiple intersections variable
40 split = maxT1 - minT1 > tClipLimit;
44 split = (maxT2 - minT2 > tClipLimit) << 1;
104 split = (newMaxT1 - newMinT1 > (maxT1 - minT1) * tClipLimit) << 1;
116 split = newMaxT2 - newMinT2 > (maxT2 - minT2) * tClipLimit;
H A DQuadraticIntersection.cpp16 static const double tClipLimit = 0.8; // http://cagd.cs.byu.edu/~tom/papers/bezclip.pdf see Multiple intersections variable
45 split = maxT1 - minT1 > tClipLimit;
49 split = (maxT2 - minT2 > tClipLimit) << 1;
103 split = (newMaxT1 - newMinT1 > (maxT1 - minT1) * tClipLimit) << 1;
114 split = newMaxT2 - newMinT2 > (maxT2 - minT2) * tClipLimit;

Completed in 159 milliseconds