Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 3 numbers on the bottom left part of the screen on my Cocos2D 2.0 project:

82
0.016
60.0

60 is probably FPS and what about the other two? As I remember, previous versions of Cocos had just the FPS number.

Any clues? thanks

share|improve this question
The top number I believe is the # of sprites. The middle I am not sure about. – iBrad Apps Jun 4 '12 at 23:28
it makes sense... 82 sprites. Right. If this helps, the middle number oscillates between 0.016 and 0.017... – RubberDuck Jun 4 '12 at 23:30
If I remember correctly, that is milliseconds for something. Maybe the FPS's milliseconds? But the middle does not matter that much, only the top and bottom really matter. – iBrad Apps Jun 4 '12 at 23:37
OK. thanks. Post your comments as answer so I can accept... 😃 – RubberDuck Jun 5 '12 at 0:00
here you have it. – RubberDuck Jun 5 '12 at 18:45

2 Answers

up vote 15 down vote accepted
82    <-- number of draw calls
0.016 <-- time it took to render the frame
60.0  <-- frames per second

The first number (82) is the number of draw calls (which is fairly high). Typically each node that renders something on the screen (sprites, labels, particle fx, etc) increases that number by one. If you use a CCSpriteBatchNode and add 100 sprites to it, it will increase the draw call only by 1.

82 is a pretty high draw call number - depending on the game's complexity and assuming it is well optimized to reduce draw calls, the number of draw calls should be around 10 to 40. Assuming all 82 draw calls are sprites, then creating a texture atlas out of the sprite images (use TexturePacker, Zwoptex, SpriteHelper) in order to use CCSpriteBatchNode you could reduce the number of draw calls to 1. Draw calls are expensive, so it is very important to keep that number down.

The time it took to render a frame is in milliseconds. Since you need to draw a new frame every 0.016666666 milliseconds in order to achieve 60 frames per second (1/60 = 0,0166…) this number can tell you how close your game is to dropping below 60 fps. Yours is pretty close, you have practically no room left for additional game logic or visuals before the framerate will drop below 60 fps.

The last number is the number of frames per second. This value, like the previous one, is averaged over several frames so that it doesn't fluctuate as much (makes it hard to read).

PS: one other thing to keep in mind is that the bottom two values become misleading can not be compared for framerates below 15 fps. For example cocos2d might show 0.0 for the time it took to render a frame at such a low framerate.

share|improve this answer
great thanks. In fact this app is not very optimized right now, but it will be. Optimization is generally the last thing I do. Thanks for the explanations. – RubberDuck Jun 7 '12 at 19:28

The top number is the number of sprites in your CCLayer, etc..

The middle is the FPS's milliseconds.

The bottom is of course your FPS! :)

share|improve this answer
1  
The top number is the number of draw calls, not the number of sprites. – LearnCocos2D Jun 7 '12 at 13:40
@LearnCocos2D What's the difference between one and the other? – grasGendarme Apr 6 at 10:45
each drawn object creates a draw call ie every label, sprite, every particlesystem, every batch node adds 1 draw call. Draw call is a state change in opengl, and changing states (ie drawing from a different texture) is an expensive operation. More so the larger the texture is. – LearnCocos2D Apr 6 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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