(svn r25696) -Fix (r25651): Missing function in the non-ICU paragraph layouter.

This commit is contained in:
michi_cc
2013-08-06 17:35:11 +00:00
parent 2770a24f9f
commit bd02761b55
2 changed files with 14 additions and 0 deletions

View File

@@ -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. */