ObjectiveC-InLearning
ObjectiveC-InLearning

Reputation: 441

Objective C: How can I render Chinese fonts in OpenGL?

Is there anyway to render Chinese fonts without using bitmaps for IOS? If so, any links or help? Thanks in advance!

Upvotes: 2

Views: 1280

Answers (1)

nmjohn
nmjohn

Reputation: 1432

As far as I know, loading the characters into textures or a texture atlas is the only way to do this. This is how I do text regardless of the font (unicode, ascii, Chinese, English, all the same).

Check out NeHe, my bible after the Red Book.

http://nehe.gamedev.net/tutorial/2d_texture_font/18002/

Upvotes: 1

Related Questions