Where Are You Spending Your GPU Performance Budget?

Published May 19, 2020 by Ruben Torres Bonet (The Gamedev Guru)
Do you see issues with this article? Let us know.
Advertisement

So you know your game is heavy on the GPU and you're ready to optimize it.

But wait, where exactly do YOU start optimizing? Do you know which parts of your scene are causing your GPU performance bottlenecks?

Well, I have a tool to help you with Unity GPU Performance profiling: RenderDoc.



Quick Navigation

1. Why You Need To Know Your Unity GPU Performance Timings

2. How to Get Your Game's GPU Timings with RenderDoc

2.1. Setting Up RenderDoc Integration

2.2. Capturing a Frame in Unity With RenderDoc

2.3. Analyzing Frame GPU Costs in RenderDoc

What's Next?

1. Why You Need To Know Your Unity GPU Performance Timings

Unity game optimization is an enormous world.

Your game can have as many bottlenecks as hardware components you have.

So the first step is always to find where your performance bottleneck is.

Only then, you can do something about it.

If you find that you're pushing your GPU over the edge, that's good.

That's your starting point for Unity performance optimization.

But even if you knew your GPU is your bottleneck, the next question becomes: where exactly am I spending so much time?

After all...

  • You can push too many vertices.
  • You might have too expensive shaders
  • You could also suffer from high overdraw
  • And more.

In other words, you need to figure out which draw calls are causing trouble to your GPU. And the higher the time cost of a draw call, the bigger the trouble you're in.

How do we go about finding the GPU timings of our game's draw calls?

Great, that's the million dollar question.

I'm about to show you a simple, yet powerful tool to answer all your questions.

Demo FPS Profiler

2. How to Get Your Game's GPU Timings with RenderDoc

RenderDoc is a tool every performance specialist should have in their toolbox.

It's a free, simple and powerful GPU profiler/debugger that will answer questions in a way that Unity can't.

Let's say you're running the FPS demo from Unity, which runs on the HDRP (High-Definition Rendering Pipeline). And the project runs as slow as Unity itself when importing a new project.

You want to know which render call in your scene is causing all this mess.

And so, you install RenderDoc.

2.1. Setting Up RenderDoc Integration

The first step after RenderDoc and launching Unity, is to load the pre-installed integration.

You do this by going to Unity's game tab and simply opening the tab options + clicking on Load RenderDoc.

Unity RenderDoc: load 1/2

Great. You are ready to go.

2.2. Capturing a Frame in Unity With RenderDoc

Launch your game in Unity's play mode and get to the moment (frame) you want to analyze. Pause the game (ctrl + p) and click on the capture frame icon.

Unity RenderDoc: load 2/2

Unity will then open a new instance of Rende​rDoc with the frame you captured, like below.

You can then double click the frame to load the frame into the RenderDoc frame analysis pipeline.

Loading a frame in RenderDoc from Unity

Loading a frame in RenderDoc from Unity

2.3. Analyzing Frame GPU Costs in RenderDoc

Here is where things get interesting.

On the left you'll see a list of draw events (mostly draw calls).

These draw calls also include the steps to render the Unity editor itself, so you have to ignore those.

We need to do a bit of digging to find the draw calls of your game. They are usually nested in a group inside the editor rendering cluster.

You'll typically look for a name like Camera.Render or the such.

You'll have an easier time if you switch to the Texture View tab. This is the place where you'll see what each draw call produces in the framebuffer of your game.

You can navigate draw call by draw call and see their effects on the framebuffer (including the GPU cost), as shown below.

RenderDoc GPU Timings

RenderDoc GPU Timings

What's better, in this process lies the key to GPU profiling: the per-draw call GPU cost estimation.

How do you get access to the GPU timings?

Easy.

Click the "calculate timings" button that looks like a clock and RenderDoc will show you an estimated cost of your draw calls.

Now, many people learned not to trust the metrics. And that's right... with one caveat.

While you cannot rely on the absolute numbers, you can trust the relative metrics.

In other words, don't believe "rendering this 3d female character takes 1.5 milliseconds", but do believe that "rendering this 3d female character is twice as expensive as rendering the male version".

Now you know what parts of your scene you should spend your efforts on.

And that, my friend, is the key to GPU Profiling.

What's Next?

Unity GPU Performance Profiling is just one part of the big picture.

You'll have different bottlenecks at different moments of your game. And these will change.

So keep something that reminds you of the entire game performance journey.

Grab my free Unity Game Performance Checklist and start optimizing your game right away.

~Ruben

Cancel Save
1 Likes 0 Comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!

Featured Tutorial

So you know your game is heavy on the GPU and you're ready to optimize it. But wait, where exactly do YOU start optimizing? Do you know which parts of your scene are causing your GPU performance bottlenecks? Well, I have a tool to help you with Unity GPU Performance profiling: RenderDoc.

Advertisement
Advertisement