Game Code Design for Rendering
- by kuroutadori
I first created a game on the iPhone and I'm now porting it to Android. I wrote most of the code in C++, but when it came to porting it wasn't so easy. The Android way is to have two threads, one for rendering and one for updating. This due to some devices blocking when updating the hardware.
My problem is that I am coming from the iPhone. When I…