0

Possible Duplicate:
Draw text in OpenGL ES

I know that if you wanna draw 3D object you need buffors for colors, indices, coords and Override some functions, but I do not know what to do to see text (string) on my emulator with OpenGL ES. I try to look in google but I didn't see any tutorials or samples that I could understand.

I saw this: Draw text in OpenGL ES but I don't understand it.

What should I do to draw "Hello world"?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Unii
  • 33
  • 4
  • Duplicate question. There's no text in OpenGL ES - you have to do it yourself. Google again - the help is out there. –  Sep 13 '11 at 15:44

1 Answers1

0

OpenGL does not support text drawing. There are some extensions/libraries that do this, but AFAIK none is for Android.

Easiest solution would be to create bitmaps, one for each letter and then display them so that they make "words".

StarsSky
  • 6,721
  • 6
  • 38
  • 63
Peter Knego
  • 79,991
  • 11
  • 123
  • 154