Rendering Statistics Window
The
has a button top right. When this Stats button is pressed, an overlay window is displayed with realtime rendering statistics. This is very useful for helping to optimize your game. The statistics displayed vary depending on your build target.Rendering Statistics Window.
Statistics window contains the following information:
Time per frame and FPS | How much time it takes to process and render one game frame (and resulting FPS). Note that this number only includes frame update and rendering of the game view; and does not include time taken in the editor to draw the scene view, inspector and other editor-only processing. |
Draw Calls | How many objects are drawn in total. This accumulates objects that are drawn multiple times as well, for example some object that is affected by pixel lights will add several draw calls. |
Batched (Draw Calls) | Number of draw calls that where batched together. Batching means that engine will be able to combine rendering of multiple objects into one draw-call which leads to lower CPU overhead. To ensure good batching you should share as many materials between different objects as possible. |
Tris and Verts | Number of triangles and vertices drawn. This is mostly important when optimizing for low-end hardware |
Used Textures | Count and memory size of textures used when drawing this frame. |
Render Textures | Count and memory size of Render Textures that are created. Also displays how many times active Render Texture was switched during this frame. |
Screen | Size, anti-aliasing level and memory taken by the screen itself. |
VRAM usage | Approximate bounds of current video memory (VRAM) usage. Also shows how much video memory your graphics card has. |
VBO total | Number of unique meshes (vertex buffers) that are uploaded to the graphics card. Each different model will cause new VBO to be created. In some cases scaled objects will cause additional VBOs to be created. In case of a static batching however number of objects can share same VBO. |
Visible Skinned Meshes | How many skinned meshes are rendered. |
Animations | How many animations are playing. |
Desktop
See Optimizing Graphics Performance for more advice.
Android
See Optimizing Android Graphics Performance for more advice.
Also, the Profiler shows additional rendering statistics.
Page last updated: 2010-09-07