Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Core Animation instrument - FPS out of 60

The Core Animation instrument in XCode shows the number of frames being rendered per second, but not the frame rate in a traditional sense. If nothing is moving on the screen, it shows 0 FPS, not taking into account the fact that it's displaying a static image at the maximum frame rate (presumably 60 FPS).

Is there any way to observe FPS values the way that everyone else defines them?

like image 289
kpozin Avatar asked May 30 '13 19:05

kpozin


1 Answers

That is not the way things work. If there is nothing changing on screen there are no frames being rendered and so the frame rate really is zero. The screen still is refreshed at 60 fps but this happens always at 60 fps no matter if there are new frames available or not.

like image 143
Sven Avatar answered Oct 24 '22 23:10

Sven