Navigation
API > API/Runtime > API/Runtime/RenderCore
ENUMS
| Name | ERDGBuilderFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/RenderCore/Public/RenderGraphDefinitions.h |
| Include Path | #include "RenderGraphDefinitions.h" |
Syntax
enum ERDGBuilderFlags
{
None = 0,
ParallelSetup = 1 << 0,
ParallelCompile = 1 << 1,
ParallelExecute = 1 << 2,
Parallel = ParallelSetup | ParallelCompile | ParallelExecute,
}
Values
| Name | Remarks |
|---|---|
| None | |
| ParallelSetup | Allows the builder to parallelize AddSetupPass calls. Without this flag, setup passes run serially. |
| ParallelCompile | Allows the builder to parallelize compilation of the graph. |
| ParallelExecute | Allows the builder to parallelize execution of passes. |
| Parallel |