Reputation: 51
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
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