up vote 1 down vote favorite
1
share [g+] share [fb]

Anyone can tell me how to get and display the fps (frame rate) of a running program on screen?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

In XCode, Run -> Start with Performance Tool -> OpenGL ES

That launches instruments with GL tool, where you'll see FPS
and GPU utilization. If you're not achieving your lickable 60fps
then GPU % is the number you'll need to lower.

link|improve this answer
is there anyway i could print out the value of the fps on screen instead? the performance tool wouldn't work on the actual real iphone... – DrkZeraga Jul 23 '09 at 13:40
Sure, you can count the number of times per second that you're calling presentRenderbuffer and print that number on the screen. – Rhythmic Fistman Jul 23 '09 at 19:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.