I'm trying to draw text on OpenGL ES context on iOS platform. I have to draw rich-text with outline font (TTF, OTF or others)
I know two outline text drawing library.
- CoreText
- FreeType
There is a default text framework in iOS CoreText. I know how to use it, but only for CGContext. What should I do to draw on OpenGL ES context? Should I draw on CoreGraphics bitmap and copy it to OpenGL ES?
I have no experience about FreeType. Is it similar with CoreText?
What's the recommended way to draw outline font drawing on OpenGL ES context?
Note: My application is soft-realtime game.