Searched refs:nextCurrE (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/core/ |
D | SkScan_AAAPath.cpp | 1086 SkAnalyticEdge* nextCurrE = currE->fNext; in is_smooth_enough() local 1087 if (nextCurrE->fUpperY >= stop_y << 16) { // Check if we're at the end in is_smooth_enough() 1091 if (nextCurrE->fUpperX < currE->fUpperX) { in is_smooth_enough() 1092 std::swap(currE, nextCurrE); in is_smooth_enough() 1094 return is_smooth_enough(leftE, currE, stop_y) && is_smooth_enough(riteE, nextCurrE, stop_y); in is_smooth_enough()
|
/external/skqp/src/core/ |
D | SkScan_AAAPath.cpp | 984 SkAnalyticEdge* nextCurrE = currE->fNext; in isSmoothEnough() local 985 if (nextCurrE->fUpperY >= stop_y << 16) { // Check if we're at the end in isSmoothEnough() 989 if (nextCurrE->fUpperX < currE->fUpperX) { in isSmoothEnough() 991 swap(currE, nextCurrE); in isSmoothEnough() 993 return isSmoothEnough(leftE, currE, stop_y) && isSmoothEnough(riteE, nextCurrE, stop_y); in isSmoothEnough()
|