Home
last modified time | relevance | path

Searched refs:m_subpaths (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/graphics/wince/
DPlatformPathWince.cpp487 m_subpaths.append(PathPolygon()); in ensureSubpath()
488 m_subpaths.last().append(m_currentPoint); in ensureSubpath()
490 ASSERT(!m_subpaths.isEmpty()); in ensureSubpath()
500 if (!m_subpaths.isEmpty()) { in addToSubpath()
501 if (m_currentPoint != m_subpaths.last()[0]) { in addToSubpath()
503 m_subpaths.last().append(m_subpaths.last()[0]); in addToSubpath()
504 m_currentPoint = m_subpaths.last()[0]; in addToSubpath()
512 m_subpaths.last().append(e.pointAt(0)); in addToSubpath()
515 addArcPoints(m_subpaths.last(), e.arcTo()); in addToSubpath()
525 quadCurve(50, m_subpaths.last(), control); in addToSubpath()
[all …]
DPlatformPathWince.h171 Vector<PathPolygon> m_subpaths; variable