diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-10-30 13:06:59 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-10-30 13:11:11 -0500 |
commit | d0c73da0ccaf3ad760714c5eb956eb52a09ccb59 (patch) | |
tree | f2ef06636012ac952f5d198501fd5756cca93d88 /vcl/quartz | |
parent | 5ecd416c011557ce663edd52a5bc95e991fb3b84 (diff) |
add SAL_INFO to CTRundata
Change-Id: I577f7582b4938dc5dcd75460dd889c5675ee3c17
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/CTRunData.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/quartz/CTRunData.cxx b/vcl/quartz/CTRunData.cxx index 080052b8c3f1..2bb5ed3b97ff 100644 --- a/vcl/quartz/CTRunData.cxx +++ b/vcl/quartz/CTRunData.cxx @@ -9,6 +9,7 @@ #include <sal/types.h> #include <cassert> +#include "quartz/utils.h" #include "CTRunData.hxx" @@ -58,6 +59,11 @@ CTRunData::CTRunData( CTRunRef pRun, int start) ownership_flags |= CTRUNDATA_F_OWN_POSITIONS; CTRunGetPositions( pRun, aAll, (CGPoint*)m_pPositions ); } + for(int i = 0; i < m_nGlyphs; i++) + { + SAL_INFO( "vcl.ct", "CTRunData Adv:" << (double)m_pAdvances[i].width << " s-idx:" << m_pStringIndices[i] << " pos:(" << + m_pPositions[i].x << ":" << m_pPositions[i].y << ")"); + } } CTRunData::~CTRunData() |