Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/ProfilingDebugging
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/ProfilingDebugging/MemoryTrace.h |
| Include | #include "ProfilingDebugging/MemoryTrace.h" |
Syntax
enum EMemoryTraceInit
{
Disabled = 0,
AllocEvents = 1 << 0,
Callstacks = 1 << 1,
Tags = 1 << 2,
Full = AllocEvents|Callstacks|Tags,
Light = AllocEvents|Tags,
}
Values
| Name | Description |
|---|---|
| Disabled | |
| AllocEvents | |
| Callstacks | |
| Tags | |
| Full | |
| Light |
Remarks
Internal options for early initialization of memory tracing systems. Exposed here due to visibility in platform implementations.