Fixing error in Text.cpp

This commit is contained in:
MattTuttle
2015-01-23 16:03:53 -06:00
parent 94b9ea1b86
commit d11045a4f9

View File

@@ -52,8 +52,6 @@ namespace lime {
value RenderToImage (ImageBuffer *image);
void SetSize (size_t size);
bool InsertCodepointFromIndex (unsigned long codepoint);
private:
#ifdef LIME_FREETYPE
Font (FT_Face face);
@@ -62,6 +60,8 @@ namespace lime {
void* face;
#endif
private:
bool InsertCodepoint (unsigned long codepoint, bool b = true);
std::list<GlyphInfo> glyphList;