Font changes, Text (harfbuzz) and sample project added

This commit is contained in:
MattTuttle
2014-07-30 14:48:27 -05:00
parent d0604d8484
commit 83bb9d9b66
15 changed files with 830 additions and 45 deletions

View File

@@ -0,0 +1,35 @@
#ifndef LIME_GRAPHICS_TEXT_H
#define LIME_GRAPHICS_TEXT_H
#include <hb.h>
namespace lime {
class Font;
class Text {
public:
Text (hb_tag_t direction, const char *script, const char *language);
~Text ();
void fromString (Font *font, const char *text);
private:
hb_buffer_t *buffer;
};
}
#endif