lacas
lacas

Reputation: 14067

Android game performance viewer

How I can scan the performance of my game?

I use OpenGL ES in my game, but sometimes, when many enemies on the screen, it will lagg a little. (15-20 enemy + 7-8 rockets, etc)

what is the best way to see what is the "non best" algorithm on my code? (performance viewer, etc)

Upvotes: 0

Views: 469

Answers (2)

Dre
Dre

Reputation: 4329

You can use traceview to profile your application, which will show you the amount of tile and number of calls to methods in your program.

Upvotes: 2

EboMike
EboMike

Reputation: 77762

For the CPU, Traceview is awesome. For the GPU, you're screwed (see my question about that). There are some GPU-specific packages, like for the Adreno GPU, but generally, OpenGL ES seems devoid of any general-purpose GPU profiling options.

Upvotes: 2

Related Questions