Navigation
API > API/Runtime > API/Runtime/Engine
ChartCreation
| Name | EFrameHitchType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/ChartCreation.h |
| Include Path | #include "ChartCreation.h" |
Syntax
enum EFrameHitchType
{
NoHitch,
UnknownUnit,
GameThread,
RenderThread,
RHIThread,
GPU,
}
Values
| Name | Remarks |
|---|---|
| NoHitch | We didn't hitch. |
| UnknownUnit | We hitched but couldn't isolate which unit caused it. |
| GameThread | Hitched and it was likely caused by the game thread. |
| RenderThread | Hitched and it was likely caused by the render thread. |
| RHIThread | Hitched and it was likely caused by the RHI thread. |
| GPU | Hitched and it was likely caused by the GPU. |