Navigation
API > API/Runtime > API/Runtime/RenderCore
Describes which pipes are configured to use the render command pipe system.
| Name | ERenderCommandPipeMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/RenderCore/Public/RenderingThread.h |
| Include Path | #include "RenderingThread.h" |
Syntax
enum ERenderCommandPipeMode
{
None,
RenderThread,
All,
}
Values
| Name | Remarks |
|---|---|
| None | Bypasses the render command pipe system altogether. Render commands are issued using tasks. |
| RenderThread | The render command pipe on the render thread pipe is active, and all other pipes forward to the render thread pipe. |
| All | All render command pipes are active. |