Searched refs:thisEdge (Results 1 – 1 of 1) sorted by relevance
958 static inline bool isSmoothEnough(SkAnalyticEdge* thisEdge, SkAnalyticEdge* nextEdge, int stop_y) { in isSmoothEnough() argument959 if (thisEdge->fCurveCount < 0) { in isSmoothEnough()960 const SkCubicEdge& cEdge = static_cast<SkAnalyticCubicEdge*>(thisEdge)->fCEdge; in isSmoothEnough()966 } else if (thisEdge->fCurveCount > 0) { in isSmoothEnough()967 const SkQuadraticEdge& qEdge = static_cast<SkAnalyticQuadraticEdge*>(thisEdge)->fQEdge; in isSmoothEnough()974 return SkAbs32(nextEdge->fDX - thisEdge->fDX) <= SK_Fixed1 && // DDx should be small in isSmoothEnough()