views:

285

answers:

1

Since the webgl/opengl doesn't support text drawing, so it possible to draw 3D object using 3D context and text drawing using 2D context ?

+2  A: 

Create the text as a texture using canvas 2D, then render it in 3D. See here for a tutorial.

Marcelo Cantos
But if the text is dynamically updating, then text rendering will become slow.
Yogesh