Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxge/ge/
Dfx_ge_ps.cpp609 CFX_PathData TransformedPath(*pPathData); in FindPSFontGlyph() local
611 TransformedPath.Transform(&matrix); in FindPSFontGlyph()
616 for (int p = 0; p < TransformedPath.GetPointCount(); p++) { in FindPSFontGlyph()
617 FX_FLOAT x = TransformedPath.GetPointX(p), y = TransformedPath.GetPointY(p); in FindPSFontGlyph()
618 switch (TransformedPath.GetFlag(p) & FXPT_TYPE) { in FindPSFontGlyph()
628 buf << x << " " << y << " " << TransformedPath.GetPointX(p + 1) << " " in FindPSFontGlyph()
629 << TransformedPath.GetPointY(p + 1) << " " in FindPSFontGlyph()
630 << TransformedPath.GetPointX(p + 2) << " " in FindPSFontGlyph()
631 << TransformedPath.GetPointY(p + 2) << " c\n"; in FindPSFontGlyph()
Dfx_ge_text.cpp1140 CFX_PathData TransformedPath(*pPath); in DrawTextPath() local
1141 TransformedPath.Transform(&matrix); in DrawTextPath()
1158 if (!DrawPath(&TransformedPath, pUser2Device, pGraphState, fill_color, in DrawTextPath()
1165 pClippingPath->Append(&TransformedPath, pUser2Device); in DrawTextPath()