Searched defs:hullIntersects (Results 1 - 8 of 8) sorted by relevance

/external/skia/src/pathops/
H A DSkPathOpsConic.cpp83 bool SkDConic::hullIntersects(const SkDCubic& cubic, bool* isLinear) const { function in class:SkDConic
84 return cubic.hullIntersects(*this, isLinear);
H A DSkPathOpsConic.h69 bool hullIntersects(const SkDQuad& quad, bool* isLinear) const { function in struct:SkDConic
70 return fPts.hullIntersects(quad, isLinear);
73 bool hullIntersects(const SkDConic& conic, bool* isLinear) const { function in struct:SkDConic
74 return fPts.hullIntersects(conic.fPts, isLinear);
77 bool hullIntersects(const SkDCubic& cubic, bool* isLinear) const;
H A DSkPathOpsCubic.cpp149 bool SkDCubic::hullIntersects(const SkDPoint* pts, int ptCount, bool* isLinear) const { function in class:SkDCubic
198 bool SkDCubic::hullIntersects(const SkDCubic& c2, bool* isLinear) const { function in class:SkDCubic
199 return hullIntersects(c2.fPts, c2.kPointCount, isLinear);
202 bool SkDCubic::hullIntersects(const SkDQuad& quad, bool* isLinear) const { function in class:SkDCubic
203 return hullIntersects(quad.fPts, quad.kPointCount, isLinear);
206 bool SkDCubic::hullIntersects(const SkDConic& conic, bool* isLinear) const { function in class:SkDCubic
208 return hullIntersects(conic.fPts, isLinear);
H A DSkPathOpsQuad.cpp46 bool SkDQuad::hullIntersects(const SkDQuad& q2, bool* isLinear) const { function in class:SkDQuad
84 bool SkDQuad::hullIntersects(const SkDConic& conic, bool* isLinear) const { function in class:SkDQuad
85 return conic.hullIntersects(*this, isLinear);
88 bool SkDQuad::hullIntersects(const SkDCubic& cubic, bool* isLinear) const { function in class:SkDQuad
89 return cubic.hullIntersects(*this, isLinear);
/external/skqp/src/pathops/
H A DSkPathOpsConic.cpp83 bool SkDConic::hullIntersects(const SkDCubic& cubic, bool* isLinear) const { function in class:SkDConic
84 return cubic.hullIntersects(*this, isLinear);
H A DSkPathOpsConic.h69 bool hullIntersects(const SkDQuad& quad, bool* isLinear) const { function in struct:SkDConic
70 return fPts.hullIntersects(quad, isLinear);
73 bool hullIntersects(const SkDConic& conic, bool* isLinear) const { function in struct:SkDConic
74 return fPts.hullIntersects(conic.fPts, isLinear);
77 bool hullIntersects(const SkDCubic& cubic, bool* isLinear) const;
H A DSkPathOpsCubic.cpp149 bool SkDCubic::hullIntersects(const SkDPoint* pts, int ptCount, bool* isLinear) const { function in class:SkDCubic
198 bool SkDCubic::hullIntersects(const SkDCubic& c2, bool* isLinear) const { function in class:SkDCubic
199 return hullIntersects(c2.fPts, c2.kPointCount, isLinear);
202 bool SkDCubic::hullIntersects(const SkDQuad& quad, bool* isLinear) const { function in class:SkDCubic
203 return hullIntersects(quad.fPts, quad.kPointCount, isLinear);
206 bool SkDCubic::hullIntersects(const SkDConic& conic, bool* isLinear) const { function in class:SkDCubic
208 return hullIntersects(conic.fPts, isLinear);
H A DSkPathOpsQuad.cpp43 bool SkDQuad::hullIntersects(const SkDQuad& q2, bool* isLinear) const { function in class:SkDQuad
81 bool SkDQuad::hullIntersects(const SkDConic& conic, bool* isLinear) const { function in class:SkDQuad
82 return conic.hullIntersects(*this, isLinear);
85 bool SkDQuad::hullIntersects(const SkDCubic& cubic, bool* isLinear) const { function in class:SkDQuad
86 return cubic.hullIntersects(*this, isLinear);

Completed in 173 milliseconds