Home | History | Annotate | Download | only in svg

Lines Matching refs:element

39     static void updateFromPathElement(void* info, const PathElement* element)
42 switch (element->type) {
46 subpathFinder->m_lastPoint = subpathFinder->m_movePoint = element->points[0];
51 if (subpathFinder->m_lastPoint != element->points[0]) {
53 subpathFinder->m_lastPoint = element->points[0];
58 if (subpathFinder->m_lastPoint != element->points[0] || element->points[0] != element->points[1]) {
60 subpathFinder->m_lastPoint = element->points[1];
65 if (subpathFinder->m_lastPoint != element->points[0] || element->points[0] != element->points[1] || element->points[1] != element->points[2]) {
67 subpathFinder->m_lastPoint = element->points[2];
74 subpathFinder->m_haveSeenMoveOnly = true; // This is an implicit move for the next element