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