Skip to content

Profiler

Mikulas Florek edited this page Sep 28, 2015 · 12 revisions

The profiler reports how much time is spent in different parts of engine. This is very helpful when you want to optimize your game. Parts of the engine you want to track must be marked by following macros:

  • BEGIN_PROFILE_BLOCK / END_PROFILE_BLOCK
  • PROFILE_FUNCTION
  • PROFILE_BLOCK

Profiler window

profiler window screenshot

void Material::apply(Renderer& renderer, PipelineInstance& pipeline) const
{
	PROFILE_FUNCTION();

To start profiling your game it is necessary to check the first checkbox. Once this checkbox is checked the tree view below is filled with data, and a graph is displayed on the bottom of the window. You can navigate in history by clicking on the graph.

Once the profiler is recording there is a very small overhead for each record. However if there is more than a hundred of hits per row, the overhead can become noticable.

Clone this wiki locally