SurfaceView Or GLSurfaceview?
Hello there please help me to decide whether to use SurfaceView or GLSurfaceView. I will be developing a game for my thesis and I already know how play with Canvas but I'm not sur
Solution 1:
In android canvas can be actually hardware-accelerated trough OpenGL (because of skia).
With 70 sprites there's no big difference between Canvas and GL. OpenGL requires more configuration, but gives you more ways to optimize drawing.
Post a Comment for "SurfaceView Or GLSurfaceview?"