Navigation
API > API/Runtime > API/Runtime/RenderCore
References
| Module | RenderCore |
| Header | /Engine/Source/Runtime/RenderCore/Public/RenderGraphPass.h |
| Include | #include "RenderGraphPass.h" |
Syntax
enum ERDGPassTaskMode
{
Inline,
Await,
Async,
}
Values
| Name | Description |
|---|---|
| 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. |