Searched refs:oddMan (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/src/pathops/ |
H A D | SkPathOpsQuad.cpp | 49 for (int oddMan = 0; oddMan < kPointCount; ++oddMan) { in hullIntersects() 51 this->otherPts(oddMan, endPt); in hullIntersects() 56 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; in hullIntersects() 93 /* bit twiddling for finding the off curve index (x&~m is the pair in [0,1,2] excluding oddMan) 94 oddMan opp x=oddMan^opp x=x-oddMan 102 otherPts(int oddMan, const SkDPoint* endPt[2]) const otherPts() argument [all...] |
H A D | SkPathOpsConic.h | 93 void otherPts(int oddMan, const SkDPoint* endPt[2]) const { in otherPts() 94 fPts.otherPts(oddMan, endPt); in otherPts() 179 void otherPts(int oddMan, const SkDPoint* endPt[2]) const override { 180 fConic.otherPts(oddMan, endPt);
|
H A D | SkPathOpsQuad.h | 88 void otherPts(int oddMan, const SkDPoint* endPt[2]) const; 170 void otherPts(int oddMan, const SkDPoint* endPt[2]) const override { 171 fQuad.otherPts(oddMan, endPt);
|
H A D | SkPathOpsTCurve.h | 37 virtual void otherPts(int oddMan, const SkDPoint* endPt[2]) const = 0;
|
H A D | SkPathOpsCubic.h | 226 void otherPts(int oddMan, const SkDPoint* endPt[2]) const override { 227 fCubic.otherPts(oddMan, endPt);
|
H A D | SkPathOpsCubic.cpp | 166 int oddMan = end1 ^ oddManMask; in hullIntersects() local 167 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; in hullIntersects()
|
Completed in 4 milliseconds