core: Reorder perf_stats destruction order on Shutdown

Avoids the gpu_core using perf_stats after it's been freed.
This commit is contained in:
ameerj 2021-11-04 20:19:58 -04:00
parent f178a8ef0c
commit 0cf78a34ba

View file

@ -324,8 +324,8 @@ struct System::Impl {
time_manager.Shutdown();
core_timing.Shutdown();
app_loader.reset();
perf_stats.reset();
gpu_core.reset();
perf_stats.reset();
kernel.Shutdown();
memory.Reset();
applet_manager.ClearAll();