summaryrefslogtreecommitdiff
path: root/src/vg/Font.h
diff options
context:
space:
mode:
authorTom Gall <tom.gall@linaro.org>2014-10-08 21:37:56 -0500
committerTom Gall <tom.gall@linaro.org>2014-10-08 21:37:56 -0500
commite3dac5ae5b2850a23a0448b3027177ba0aa5551e (patch)
treea3362177eb4a3a4d8edc06ee2d458bea87e4952c /src/vg/Font.h
parentb00fa0278f025739f276d010a2fe3a793ba66d21 (diff)
Switch over to the user of Eigen, (not NE10)NE10-switchover
I'm afraid. This presumes that the Eigen includes are within the system include path. Changes are extensive to switch over from unoptimized matrix and vector classes to NEON optimized classes that functionally should be sort of a replacement. Unfortunately there are many places this touches the code as the internal data to the vectors and matrix elements was not abstracted. This is a WIP commit. Not all code compiles.
Diffstat (limited to 'src/vg/Font.h')
-rw-r--r--src/vg/Font.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vg/Font.h b/src/vg/Font.h
index ca29cb7..2356c69 100644
--- a/src/vg/Font.h
+++ b/src/vg/Font.h
@@ -62,7 +62,7 @@ public:
GLYPH_PATH = 1,
GLYPH_IMAGE = 2
};
- Glyph() { m_state = GLYPH_UNINITIALIZED; m_path = m_image = VG_INVALID_HANDLE; m_isHinted = false; m_origin.set(0.0f, 0.0f); m_escapement.set(0.0f, 0.0f); }
+ Glyph() { m_state = GLYPH_UNINITIALIZED; m_path = m_image = VG_INVALID_HANDLE; m_isHinted = false; m_origin(0.0f, 0.0f); m_escapement(0.0f, 0.0f); }
unsigned int m_index;
State m_state;
VGPath m_path;