diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-02-21 17:18:27 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-02-21 22:59:45 +0000 |
commit | c54c07eac0531b6d9fcd591c3e44c5e27817d076 (patch) | |
tree | 8bf27d5ec965a4a1e00cd9907d2b0b98022a49a8 /core/fpdfapi/page/cpdf_textobject.h | |
parent | 892d7510db7015b1835d8e057a716518881f126d (diff) | |
download | pdfium-c54c07eac0531b6d9fcd591c3e44c5e27817d076.tar.xz |
Convert text positions from x,y to CFX_PointF
This Cl converts the AllStates to use CFX_PointF and changes the advance code
to return a CFX_PointF instead of accepting two out floats.
Change-Id: Idb5e295b92e8a16ead535773de066f4b7ea2bdd9
Reviewed-on: https://pdfium-review.googlesource.com/2813
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/page/cpdf_textobject.h')
-rw-r--r-- | core/fpdfapi/page/cpdf_textobject.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/fpdfapi/page/cpdf_textobject.h b/core/fpdfapi/page/cpdf_textobject.h index 756187046b..59da718f62 100644 --- a/core/fpdfapi/page/cpdf_textobject.h +++ b/core/fpdfapi/page/cpdf_textobject.h @@ -62,9 +62,7 @@ class CPDF_TextObject : public CPDF_PageObject { const FX_FLOAT* pKerning, int nSegs); - void CalcPositionData(FX_FLOAT* pTextAdvanceX, - FX_FLOAT* pTextAdvanceY, - FX_FLOAT horz_scale); + CFX_PointF CalcPositionData(FX_FLOAT horz_scale); CFX_PointF m_Pos; std::vector<uint32_t> m_CharCodes; |