2025-09-05 19:46:30 +08:00
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.Profiling;
|
2026-04-21 13:01:55 +08:00
|
|
|
using UnityEngine.UIElements;
|
2025-09-05 19:46:30 +08:00
|
|
|
|
|
|
|
|
namespace AlicizaX.Debugger.Runtime
|
|
|
|
|
{
|
|
|
|
|
public sealed partial class DebuggerComponent
|
|
|
|
|
{
|
2026-04-21 13:01:55 +08:00
|
|
|
private sealed class ProfilerInformationWindow : PollingDebuggerWindowBase
|
2025-09-05 19:46:30 +08:00
|
|
|
{
|
2026-04-21 13:01:55 +08:00
|
|
|
protected override void BuildWindow(VisualElement root)
|
2025-09-05 19:46:30 +08:00
|
|
|
{
|
2026-04-21 13:01:55 +08:00
|
|
|
VisualElement section = CreateSection("Profiler Information", out VisualElement card);
|
|
|
|
|
card.Add(CreateRow("Supported", Profiler.supported.ToString()));
|
|
|
|
|
card.Add(CreateRow("Enabled", Profiler.enabled.ToString()));
|
|
|
|
|
card.Add(CreateRow("Enable Binary Log", Profiler.enableBinaryLog ? Utility.Text.Format("True, {0}", Profiler.logFile) : "False"));
|
|
|
|
|
#if UNITY_2019_3_OR_NEWER
|
|
|
|
|
card.Add(CreateRow("Enable Allocation Callstacks", Profiler.enableAllocationCallstacks.ToString()));
|
|
|
|
|
#endif
|
|
|
|
|
#if UNITY_2018_3_OR_NEWER
|
|
|
|
|
card.Add(CreateRow("Area Count", Profiler.areaCount.ToString()));
|
|
|
|
|
card.Add(CreateRow("Max Used Memory", GetByteLengthString(Profiler.maxUsedMemory)));
|
|
|
|
|
#endif
|
|
|
|
|
card.Add(CreateRow("Mono Used Size", GetByteLengthString(Profiler.GetMonoUsedSizeLong())));
|
|
|
|
|
card.Add(CreateRow("Mono Heap Size", GetByteLengthString(Profiler.GetMonoHeapSizeLong())));
|
|
|
|
|
card.Add(CreateRow("Used Heap Size", GetByteLengthString(Profiler.usedHeapSizeLong)));
|
|
|
|
|
card.Add(CreateRow("Total Allocated Memory", GetByteLengthString(Profiler.GetTotalAllocatedMemoryLong())));
|
|
|
|
|
card.Add(CreateRow("Total Reserved Memory", GetByteLengthString(Profiler.GetTotalReservedMemoryLong())));
|
|
|
|
|
card.Add(CreateRow("Total Unused Reserved Memory", GetByteLengthString(Profiler.GetTotalUnusedReservedMemoryLong())));
|
|
|
|
|
#if UNITY_2018_1_OR_NEWER
|
|
|
|
|
card.Add(CreateRow("Allocated Memory For Graphics Driver", GetByteLengthString(Profiler.GetAllocatedMemoryForGraphicsDriver())));
|
|
|
|
|
#endif
|
|
|
|
|
#if UNITY_5_5_OR_NEWER
|
|
|
|
|
card.Add(CreateRow("Temp Allocator Size", GetByteLengthString(Profiler.GetTempAllocatorSize())));
|
|
|
|
|
#endif
|
|
|
|
|
card.Add(CreateRow("Marshal Cached HGlobal Size", GetByteLengthString(Utility.Marshal.CachedHGlobalSize)));
|
|
|
|
|
root.Add(section);
|
2025-09-05 19:46:30 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|