Renamed Font:hasGlyph to Font:hasGlyphs, and expanded it to accept multiple arguments and full strings. Resolves issue #762.

This commit is contained in:
Alex Szpakowski
2013-10-25 21:56:32 -03:00
parent b57256b3e5
commit 4e321697d3
8 changed files with 51 additions and 26 deletions
+3 -3
View File
@@ -100,10 +100,10 @@ public:
virtual bool hasGlyph(uint32 glyph) const = 0;
/**
* Gets whether this Rasterizer has a specific glyph.
* @param text The (UNICODE) glyph character.
* Gets whether this Rasterizer has all the glyphs in a string.
* @param text The (UTF-8) string.
**/
virtual bool hasGlyph(const std::string &text) const;
virtual bool hasGlyphs(const std::string &text) const;
protected: