Rendering Statistics Window
Manual     Reference     Scripting   
Unity Manual > Advanced > Optimizing Graphics Performance > Rendering Statistics Window

Rendering Statistics Window

The Game View has a Stats 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 FPSHow 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 CallsHow 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 VertsNumber of triangles and vertices drawn. This is mostly important when optimizing for low-end hardware
Used TexturesCount and memory size of textures used when drawing this frame.
Render TexturesCount and memory size of Render Textures that are created. Also displays how many times active Render Texture was switched during this frame.
ScreenSize, anti-aliasing level and memory taken by the screen itself.
VRAM usageApproximate bounds of current video memory (VRAM) usage. Also shows how much video memory your graphics card has.
VBO totalNumber 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 MeshesHow many skinned meshes are rendered.
AnimationsHow many animations are playing.

Desktop

See Optimizing Graphics Performance for more advice.

iOS

Android

Also, the Profiler shows additional rendering statistics.

Page last updated: 2010-09-07