hironishihara / ofxTrueTypeFontUC

An extension of ofTrueTypeFont class for using UNICODE characters. Tested on OSX, iOS, and Windows.
Other
116 stars 46 forks source link

Including Freetype.h #31

Open crecord opened 5 years ago

crecord commented 5 years ago

In OF 10.1 the following didn't work to include freetype:

#include "freetype.h"
#include "ftglyph.h"
#include "ftoutln.h"
#include "fttrigon.h"

I reverted it back so it was including it like so and it worked fine. (Just noting it here incase it's helpful to others)

#include "freetype2/freetype/freetype.h"
#include "freetype2/freetype/ftglyph.h"
#include "freetype2/freetype/ftoutln.h"
#include "freetype2/freetype/fttrigon.h"