Searched refs:interp_quad_coords (Results 1 - 1 of 1) sorted by relevance
/third_party/skia/src/pathops/ |
H A D | SkPathOpsQuad.cpp | 233 static double interp_quad_coords(const double* src, double t) { in interp_quad_coords() function 283 double ax = dst[0].fX = interp_quad_coords(&fPts[0].fX, t1); in subDivide() 284 double ay = dst[0].fY = interp_quad_coords(&fPts[0].fY, t1); in subDivide() 285 double dx = interp_quad_coords(&fPts[0].fX, (t1 + t2) / 2); in subDivide() 286 double dy = interp_quad_coords(&fPts[0].fY, (t1 + t2) / 2); in subDivide() 287 double cx = dst[2].fX = interp_quad_coords(&fPts[0].fX, t2); in subDivide() 288 double cy = dst[2].fY = interp_quad_coords(&fPts[0].fY, t2); in subDivide() 337 static void interp_quad_coords(const double* src, double* dst, double t) { in interp_quad_coords() function 350 interp_quad_coords(&fPts[0].fX, &dst.pts[0].fX, t); in chopAt() 351 interp_quad_coords( in chopAt() [all...] |
Completed in 2 milliseconds