diff options
Diffstat (limited to 'WebCore/platform/graphics/openvg/PathOpenVG.cpp')
-rw-r--r-- | WebCore/platform/graphics/openvg/PathOpenVG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/graphics/openvg/PathOpenVG.cpp b/WebCore/platform/graphics/openvg/PathOpenVG.cpp index 2c366ee..7e67036 100644 --- a/WebCore/platform/graphics/openvg/PathOpenVG.cpp +++ b/WebCore/platform/graphics/openvg/PathOpenVG.cpp @@ -459,8 +459,8 @@ void Path::transform(const AffineTransform& transformation) delete m_path; m_path = dst; - m_path->m_currentPoint = transform.mapPoint(m_path->m_currentPoint); - m_path->m_subpathStartPoint = transform.mapPoint(m_path->m_subpathStartPoint); + m_path->m_currentPoint = transformation.mapPoint(m_path->m_currentPoint); + m_path->m_subpathStartPoint = transformation.mapPoint(m_path->m_subpathStartPoint); } |