OpenGL ES 2.0: Mixing 2D with 3D
- by Bunkai.Satori
Is it possible to mix 2D and 3D graphics in a single OpenGL ES 2.0 game, please?
I have plenty of 2D graphics in my game. The 2D graphics is represented by two triangular polygons (making up a rectangle) with texture on them. I use orthographic matrix to render the whole scene.
However, I need to add some 3D effects into my game. Threfore, I wish…