Home | History | Annotate | Download | only in render

Lines Matching refs:pPoints

644   void GetPoints(std::vector<FX_PATHPOINT>& pPoints, size_t start_idx) {
649 pPoints[start_idx + i].m_Point.x = p[i];
653 pPoints[start_idx + i].m_Point.y = p[i];
656 void GetPointsReverse(std::vector<FX_PATHPOINT>& pPoints, size_t start_idx) {
661 pPoints[i + start_idx].m_Point.x = p[i];
665 pPoints[i + start_idx].m_Point.y = p[i];
770 std::vector<FX_PATHPOINT>& pPoints = path.GetPoints();
771 C1.GetPoints(pPoints, 0);
772 D2.GetPoints(pPoints, 3);
773 C2.GetPointsReverse(pPoints, 6);
774 D1.GetPointsReverse(pPoints, 9);