Home | History | Annotate | Download | only in core

Lines Matching refs:dstP

1914     SkPoint         srcP[4], dstP[3];
1920 morphpoints(dstP, srcP, 1, meas, matrix);
1921 dst->moveTo(dstP[0]);
1927 morphpoints(dstP, srcP, 2, meas, matrix);
1928 dst->quadTo(dstP[0], dstP[1]);
1931 morphpoints(dstP, &srcP[1], 2, meas, matrix);
1932 dst->quadTo(dstP[0], dstP[1]);
1935 morphpoints(dstP, &srcP[1], 3, meas, matrix);
1936 dst->cubicTo(dstP[0], dstP[1], dstP[2]);