Lines Matching refs:dstPoint
107349 Point4DTyped<UnknownUnits, F>* dstPoint = points[0];
107351 *dstPoint++ = TransformPoint(Point4DTyped<UnknownUnits, F>(aRect.x, aRect.y, 0, 1));
107352 *dstPoint++ = TransformPoint(Point4DTyped<UnknownUnits, F>(aRect.XMost(), aRect.y, 0, 1));
107353 *dstPoint++ = TransformPoint(Point4DTyped<UnknownUnits, F>(aRect.XMost(), aRect.YMost(), 0, 1));
107354 *dstPoint++ = TransformPoint(Point4DTyped<UnknownUnits, F>(aRect.x, aRect.YMost(), 0, 1));
107370 Point4DTyped<UnknownUnits, F>* srcPointEnd = dstPoint;
107372 dstPoint = points[~plane & 1];
107373 Point4DTyped<UnknownUnits, F>* dstPointStart = dstPoint;
107377 while (srcPoint < srcPointEnd && ((dstPoint - dstPointStart) < kTransformAndClipRectMaxVerts)) {
107384 *dstPoint++ = *srcPoint * t + *prevPoint * (1.0 - t);
107390 *dstPoint++ = *srcPoint;
107397 if (dstPoint == dstPointStart) {
107403 size_t srcPointCount = dstPoint - points[0];