1

I am trying to make a TagCloud and trying to put text on a cube. But I am not able to specify the Z index in text. Is it possible ?

I was reading about it found this discussion Draw text in OpenGL ES

Any Ideas ?

Community
  • 1
  • 1
Arjit
  • 565
  • 9
  • 27
  • I found one of the way is to change those text into bitmap and place those bitmaps in the space. But this could be slow. – Arjit Oct 25 '11 at 13:51

1 Answers1

2
  1. Draw glyphs/strings to a texture(s).

  2. Render view-aligned quads with your text at whatever Z you want.

genpfault
  • 51,148
  • 11
  • 85
  • 139