Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxge/ge/
Dfx_ge_path.cpp342 int iPoint = 0; in GetBoundingBox() local
346 while (iPoint < m_PointCount) { in GetBoundingBox()
347 if (m_pPoints[iPoint].m_Flag == FXPT_MOVETO) { in GetBoundingBox()
348 iStartPoint = iPoint + 1; in GetBoundingBox()
349 iEndPoint = iPoint; in GetBoundingBox()
352 if (m_pPoints[iPoint].m_Flag == FXPT_BEZIERTO) { in GetBoundingBox()
353 rect.UpdateRect(m_pPoints[iPoint].m_PointX, m_pPoints[iPoint].m_PointY); in GetBoundingBox()
354 rect.UpdateRect(m_pPoints[iPoint + 1].m_PointX, in GetBoundingBox()
355 m_pPoints[iPoint + 1].m_PointY); in GetBoundingBox()
356 iPoint += 2; in GetBoundingBox()
[all …]