diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-07-20 07:49:45 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-07-20 22:11:01 +0200 |
commit | 4a0cb642f18b674f37db8e9bd30942740df08e4c (patch) | |
tree | f4652138164cab571c3050836b758b9aa2f3350e /vcl/quartz/CTRunData.hxx | |
parent | 213a13c52b5db9d1ebe9857857f9e7415cf97dce (diff) |
vcl quartz: Add support back for DXArray tweaking
The CoreText implementation dropped the support of DXArray
more exactly ignored the values provided in it.
And try to approximate the result by assuming that
all it does is full justification... which is not quite right
This ut the feature back, buy handing the glyph drawing
directly, rather than defering to CoreText CTLineDraw
to control the position of each Glyph
Change-Id: Ibe0cfe789d3be441c012d8ac1104d939204a591c
Diffstat (limited to 'vcl/quartz/CTRunData.hxx')
-rw-r--r-- | vcl/quartz/CTRunData.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/CTRunData.hxx b/vcl/quartz/CTRunData.hxx index 0aafeef55714..b6d1a1d86188 100644 --- a/vcl/quartz/CTRunData.hxx +++ b/vcl/quartz/CTRunData.hxx @@ -44,7 +44,7 @@ public: const CGPoint* m_pPositions; const CGSize* m_pAdvances; const CFIndex* m_pStringIndices; - + CGPoint* m_pAdjPositions; CTRunData(CTRunRef pRun, int start); ~CTRunData(void); }; |