HomeSort by relevance Sort by last modified time
    Searched refs:split_conic (Results 1 - 2 of 2) sorted by null

  /external/skia/gm/
beziereffects.cpp 394 int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) { function in class:skiagm::BezierConicEffects
411 // Calls split_conic on the entire conic and then once more on each subsection.
416 int conicCnt = split_conic(src, dstTemp, weight);
418 int conicCnt2 = split_conic(dstTemp[0].fPts, dst, dstTemp[0].fW);
419 conicCnt = conicCnt2 + split_conic(dstTemp[1].fPts, &dst[conicCnt2], dstTemp[1].fW);
  /external/skia/src/gpu/
GrAAHairLinePathRenderer.cpp 137 static int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) { function
154 // Calls split_conic on the entire conic and then once more on each subsection.
159 int conicCnt = split_conic(src, dstTemp, weight);
161 int conicCnt2 = split_conic(dstTemp[0].fPts, dst, dstTemp[0].fW);
162 conicCnt = conicCnt2 + split_conic(dstTemp[1].fPts, &dst[conicCnt2], dstTemp[1].fW);
    [all...]

Completed in 72 milliseconds