Home | History | Annotate | Download | only in batches

Lines Matching refs:split_conic

138 static int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) {
155 // Calls split_conic on the entire conic and then once more on each subsection.
160 int conicCnt = split_conic(src, dstTemp, weight);
162 int conicCnt2 = split_conic(dstTemp[0].fPts, dst, dstTemp[0].fW);
163 conicCnt = conicCnt2 + split_conic(dstTemp[1].fPts, &dst[conicCnt2], dstTemp[1].fW);