ph12123
ph12123

Reputation: 51

How can i draw some unicode characters like Chinese with OpenGL ES on Android platform

I currently developing a openGL ES 2D game,everything seems OK,but I need to show many Chinese characters in the game.

Upvotes: 1

Views: 1096

Answers (1)

datenwolf
datenwolf

Reputation: 162164

Render the text using a combination of font rasterizer and unicode text layouter (for example FreeType and Pango) into a image, load this as texture and draw a quad with that texture.

Upvotes: 4

Related Questions