diff options
Diffstat (limited to 'src/gfx_layout.h')
-rw-r--r-- | src/gfx_layout.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gfx_layout.h b/src/gfx_layout.h index b4f9afdc6..fb8866cc8 100644 --- a/src/gfx_layout.h +++ b/src/gfx_layout.h @@ -125,6 +125,7 @@ public: Font *font; ///< The font used to layout these. GlyphID *glyphs; ///< The glyphs we're drawing. float *positions; ///< The positions of the glyphs. + int *glyph_to_char; ///< The char index of the glyphs. int glyph_count; ///< The number of glyphs. public: @@ -135,6 +136,7 @@ public: const GlyphID *getGlyphs() const; float *getPositions() const; int getLeading() const; + const int *getGlyphToCharMap() const; }; /** A single line worth of VisualRuns. */ |