Navigation
API > API/Runtime > API/Runtime/RHI
| |
|
| Name |
ERHISubmitFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/RHI/Public/RHICommandList.h |
| Include Path |
#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,
}
Values
| Name |
Remarks |
| 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 |
|