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;