summaryrefslogtreecommitdiff
path: root/vcl/quartz
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/quartz')
-rw-r--r--vcl/quartz/CTRunData.cxx6
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()