Revert "Revert "Add: [Win32] Uniscribe configure options for MinGW targets.""

This reverts commit ca4a4869a2.
This commit is contained in:
Jonathan G Rennison
2018-06-25 18:39:59 +01:00
parent ef0a458ab6
commit b48a6ef368
24 changed files with 1065 additions and 159 deletions

View File

@@ -75,6 +75,7 @@ public:
virtual GlyphID MapCharToGlyph(WChar key) { assert(IsPrintable(key)); return SPRITE_GLYPH | key; }
virtual const void *GetFontTable(uint32 tag, size_t &length) { length = 0; return NULL; }
virtual const char *GetFontName() { return "sprite"; }
virtual bool IsBuiltInFont() { return true; }
};
/**
@@ -254,6 +255,7 @@ public:
virtual GlyphID MapCharToGlyph(WChar key);
virtual const void *GetFontTable(uint32 tag, size_t &length);
virtual const char *GetFontName() { return face->family_name; }
virtual bool IsBuiltInFont() { return false; }
};
FT_Library _library = NULL;