HomeSort by relevance Sort by last modified time
    Searched refs:SkIntersections (Results 1 - 25 of 30) sorted by null

1 2

  /external/skia/src/pathops/
SkPathOpsTSect.cpp 10 int SkIntersections::intersect(const SkDQuad& quad1, const SkDQuad& quad2) {
17 int SkIntersections::intersect(const SkDConic& conic, const SkDQuad& quad) {
24 int SkIntersections::intersect(const SkDConic& conic1, const SkDConic& conic2) {
31 int SkIntersections::intersect(const SkDCubic& cubic, const SkDQuad& quad) {
38 int SkIntersections::intersect(const SkDCubic& cubic, const SkDConic& conic) {
45 int SkIntersections::intersect(const SkDCubic& cubic1, const SkDCubic& cubic2) {
SkIntersections.cpp 8 #include "SkIntersections.h"
10 int SkIntersections::closestTo(double rangeStart, double rangeEnd, const SkDPoint& testPt,
28 void SkIntersections::flip() {
34 int SkIntersections::insert(double one, double two, const SkDPoint& pt) {
94 void SkIntersections::insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2) {
103 int SkIntersections::insertCoincident(double one, double two, const SkDPoint& pt) {
111 void SkIntersections::setCoincident(int index) {
118 void SkIntersections::merge(const SkIntersections& a, int aIndex, const SkIntersections& b
    [all...]
SkPathOpsCurve.h 10 #include "SkIntersections.h"
236 SkIntersections* i) {
243 SkIntersections* i) {
250 SkIntersections* i) {
257 SkIntersections* i) {
264 SkIntersections* ) = {
274 roots[0] = SkIntersections::HorizontalIntercept(line.set(a), y);
280 roots[0] = SkIntersections::VerticalIntercept(line.set(a), x);
286 return SkIntersections::HorizontalIntercept(quad.set(a), y, roots);
291 return SkIntersections::VerticalIntercept(quad.set(a), x, roots)
    [all...]
SkDQuadLineIntersection.cpp 7 #include "SkIntersections.h"
96 LineQuadraticIntersections(const SkDQuad& q, const SkDLine& l, SkIntersections* i)
403 SkIntersections* fIntersections;
407 int SkIntersections::horizontal(const SkDQuad& quad, double left, double right, double y,
414 int SkIntersections::vertical(const SkDQuad& quad, double top, double bottom, double x,
421 int SkIntersections::intersect(const SkDQuad& quad, const SkDLine& line) {
427 int SkIntersections::intersectRay(const SkDQuad& quad, const SkDLine& line) {
436 int SkIntersections::HorizontalIntercept(const SkDQuad& quad, SkScalar y, double* roots) {
441 int SkIntersections::VerticalIntercept(const SkDQuad& quad, SkScalar x, double* roots) {
449 return SkIntersections::HorizontalIntercept(*this, yIntercept, roots)
    [all...]
SkAddIntersections.cpp 14 const SkIntersectionHelper& wn, const SkIntersections& i) {
35 const SkIntersections& i) {
55 const SkIntersectionHelper& wn, const SkIntersections& i) {
75 const SkIntersectionHelper& wn, const SkIntersections& i) {
95 const SkIntersectionHelper& wn, const SkIntersections& i) {
115 const SkIntersectionHelper& wn, const SkIntersections& i) {
136 const SkIntersectionHelper& wn, const SkIntersections& i) {
156 const SkIntersectionHelper& wn, const SkIntersections& i) {
176 const SkIntersectionHelper& wn, const SkIntersections& i) {
196 const SkIntersectionHelper& wn, const SkIntersections& i)
    [all...]
SkDConicLineIntersection.cpp 7 #include "SkIntersections.h"
18 LineConicIntersections(const SkDConic& c, const SkDLine& l, SkIntersections* i)
322 SkIntersections* fIntersections;
326 int SkIntersections::horizontal(const SkDConic& conic, double left, double right, double y,
333 int SkIntersections::vertical(const SkDConic& conic, double top, double bottom, double x,
340 int SkIntersections::intersect(const SkDConic& conic, const SkDLine& line) {
346 int SkIntersections::intersectRay(const SkDConic& conic, const SkDLine& line) {
355 int SkIntersections::HorizontalIntercept(const SkDConic& conic, SkScalar y, double* roots) {
360 int SkIntersections::VerticalIntercept(const SkDConic& conic, SkScalar x, double* roots) {
SkDLineIntersection.cpp 7 #include "SkIntersections.h"
10 void SkIntersections::cleanUpParallelLines(bool parallel) {
32 void SkIntersections::computePoints(const SkDLine& line, int used) {
39 int SkIntersections::intersectRay(const SkDLine& a, const SkDLine& b) {
80 int SkIntersections::intersect(const SkDLine& a, const SkDLine& b) {
196 double SkIntersections::HorizontalIntercept(const SkDLine& line, double y) {
200 int SkIntersections::horizontal(const SkDLine& line, double left, double right,
272 double SkIntersections::VerticalIntercept(const SkDLine& line, double x) {
276 int SkIntersections::vertical(const SkDLine& line, double top, double bottom,
SkDCubicLineIntersection.cpp 7 #include "SkIntersections.h"
84 LineCubicIntersections(const SkDCubic& c, const SkDLine& l, SkIntersections* i)
396 SkIntersections* fIntersections;
400 int SkIntersections::horizontal(const SkDCubic& cubic, double left, double right, double y,
407 int SkIntersections::vertical(const SkDCubic& cubic, double top, double bottom, double x,
414 int SkIntersections::intersect(const SkDCubic& cubic, const SkDLine& line) {
420 int SkIntersections::intersectRay(const SkDCubic& cubic, const SkDLine& line) {
SkIntersections.h 16 class SkIntersections {
18 SkIntersections()
263 void merge(const SkIntersections& , int , const SkIntersections& , int );
SkPathOpsTypes.h 28 class SkIntersections;
77 void debugAddLoopCount(SkIntersections* , const SkIntersectionHelper& ,
SkPathOpsTSect.h 11 #include "SkIntersections.h"
221 SkIntersections* intersections);
280 SkIntersections* );
290 SkTSpan<OppCurve, TCurve>* oppSpan, SkIntersections* );
338 SkIntersections i;
    [all...]
SkPathOpsDebug.cpp 283 #include "SkIntersections.h"
286 void SkOpGlobalState::debugAddLoopCount(SkIntersections* i, const SkIntersectionHelper& wt,
289 SkIntersections::DebugLoop looper = (SkIntersections::DebugLoop) index;
379 void SkIntersections::debugBumpLoopCount(DebugLoop index) {
383 int SkIntersections::debugLoopCount(DebugLoop index) const {
387 void SkIntersections::debugResetLoopCount() {
451 SkIntersections i;
    [all...]
SkOpAngle.cpp 413 SkIntersections i;
513 SkIntersections iEnd;
740 SkIntersections iMid;
748 SkIntersections oppMid;
    [all...]
SkPathOpsQuad.cpp 7 #include "SkIntersections.h"
260 SkIntersections i;
  /external/skia/tests/
PathOpsLineIntersectionTest.cpp 8 #include "SkIntersections.h"
88 const SkIntersections& ts, bool nearAllowed) {
111 SkIntersections i;
123 SkIntersections ts;
130 SkIntersections ts;
137 SkIntersections ts;
144 SkIntersections ts;
155 SkIntersections ts;
166 SkIntersections ts;
175 SkIntersections ts
    [all...]
PathOpsThreeWayTest.cpp 7 #include "SkIntersections.h"
45 SkTDArray<SkIntersections> combos;
50 SkIntersections* i = combos.append();
51 sk_bzero(i, sizeof(SkIntersections));
PathOpsConicLineIntersectionTest.cpp 9 #include "SkIntersections.h"
31 static int doIntersect(SkIntersections& intersections, const SkDConic& conic, const SkDLine& line,
75 SkIntersections intersections;
116 SkIntersections intersections;
PathOpsQuadLineIntersectionTest.cpp 9 #include "SkIntersections.h"
31 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line,
86 SkIntersections intersections;
124 SkIntersections intersections;
PathOpsCubicConicIntersectionTest.cpp 8 #include "SkIntersections.h"
48 SkIntersections i;
PathOpsCubicLineIntersectionTest.cpp 8 #include "SkIntersections.h"
45 SkIntersections i;
99 static int doIntersect(SkIntersections& intersections, const SkDCubic& cubic, const SkDLine& line) {
143 SkIntersections i;
193 SkIntersections i;
PathOpsQuadLineIntersectionThreadedTest.cpp 9 #include "SkIntersections.h"
14 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line,
52 SkIntersections intersections;
PathOpsCubicQuadIntersectionTest.cpp 8 #include "SkIntersections.h"
72 SkIntersections i;
PathOpsQuadIntersectionTest.cpp 9 #include "SkIntersections.h"
35 SkIntersections intersections;
330 SkIntersections intersections;
378 SkIntersections intersections2;
516 SkIntersections intersections;
PathOpsCubicIntersectionTest.cpp 10 #include "SkIntersections.h"
40 SkIntersections tIntersections;
394 SkIntersections intersections;
493 SkIntersections intersections2;
637 SkIntersections i;
PathOpsAngleIdeas.cpp 8 #include "SkIntersections.h"
48 SkIntersections i;
476 SkIntersections intersect[2];
492 const SkIntersections& i = intersect[index];
587 SkIntersections i;
617 SkIntersections i;
803 SkIntersections i;
    [all...]

Completed in 471 milliseconds

1 2