Navigation
API > API/Runtime > API/Runtime/RenderCore
| Name | ERDGPassTaskMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/RenderCore/Public/RenderGraphPass.h |
| Include Path | #include "RenderGraphPass.h" |
Syntax
enum ERDGPassTaskMode
{
Inline,
Await,
Async,
}
Values
| Name | Remarks |
|---|---|
| Inline | Execute must be called inline on the render thread. |
| Await | Execute may be called in a task that is awaited at the end of FRDGBuilder::Execute. |
| Async | Execute may be called in a task that must be manually awaited. |