Navigation
API > API/Runtime > API/Runtime/RenderCore
| Name | ERDGScopeFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/RenderCore/Public/RenderGraphEvent.h |
| Include Path | #include "RenderGraphEvent.h" |
Syntax
enum ERDGScopeFlags
{
None = 0,
Final = 1 << 0,
AlwaysEnable = 1 << 1,
Stat = 1 << 2,
}
Values
| Name | Remarks |
|---|---|
| None | |
| Final | Disables any nested scopes of the same type. |
| AlwaysEnable | Ensures the scope is always emitted (ignores cvars that disable scopes) |
| Stat | The scope includes a GPU stat, so may need to be enabled even when cvars are disabling scopes. |