Navigation
API > API/Runtime > API/Runtime/RHI
References
| Module | RHI |
| Header | /Engine/Source/Runtime/RHI/Public/RHICommandList.h |
| Include | #include "RHICommandList.h" |
Syntax
enum ERHISubmitFlags
{
None = 0,
SubmitToGPU = 1 << 0,
DeleteResources = 1 << 1,
FlushRHIThread = 1 << 2,
EndFrame = 1 << 3,
EnableBypass = 1 << 4,
DisableBypass = 1 << 5,
EnableDrawEvents = 1 << 6,
DisableDrawEvents = 1 << 7,
}
Values
| Name | Description |
|---|---|
| None | |
| SubmitToGPU | All submitted work will be processed, and the resulting platform command lists will be submitted to the GPU. |
| DeleteResources | Processes the delete queue until it is empty. |
| FlushRHIThread | Indicates that the entire RHI thread pipeline will be flushed. |
| EndFrame | Marks the end of an engine frame. |
| EnableBypass | Used when toggling RHI command bypass. |
| DisableBypass | |
| EnableDrawEvents | |
| DisableDrawEvents |