From 89688f93e1da0274553a4b274de2b69a05be77e6 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 13 Jul 2022 21:45:43 +0200 Subject: [PATCH] Add GPU Dispatch calls in GPU profiler draw calls collumn --- Source/Editor/Windows/Profiler/GPU.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Windows/Profiler/GPU.cs b/Source/Editor/Windows/Profiler/GPU.cs index 394de2510..bc706bbeb 100644 --- a/Source/Editor/Windows/Profiler/GPU.cs +++ b/Source/Editor/Windows/Profiler/GPU.cs @@ -355,7 +355,7 @@ namespace FlaxEditor.Windows.Profiler row.Values[2] = (e.Time * 10000.0f) / 10000.0f; // Draw Calls - row.Values[3] = e.Stats.DrawCalls; + row.Values[3] = e.Stats.DrawCalls + e.Stats.DispatchCalls; // Triangles row.Values[4] = e.Stats.Triangles;