hironishihara / ofxTrueTypeFontUC

An extension of ofTrueTypeFont class for using UNICODE characters. Tested on OSX, iOS, and Windows.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Including Freetype.h

crecord opened this issue · comments

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"