Navigation
API > API/Runtime > API/Runtime/RHI
| Name | ERHITransitionCreateFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/RHI/Public/RHIDefinitions.h |
| Include Path | #include "RHIDefinitions.h" |
Syntax
enum ERHITransitionCreateFlags
{
None = 0,
NoFence = 1 << 0,
NoSplit = 1 << 1,
AllowDuringRenderPass = 1 << 2,
AllowDecayPipelines = 1 << 3,
}
Values
| Name | Remarks |
|---|---|
| None | |
| NoFence | Disables fencing between pipelines during the transition. |
| NoSplit | Indicates the transition will have no useful work between the Begin/End calls, so should use a partial flush rather than a fence as this is more optimal. |
| AllowDuringRenderPass | Indicates that the transition is allowed to happen during a RenderPass. |
| AllowDecayPipelines | This is an advanced mode that allows issuing a transition using a single pipeline as the previous pipelines in a transition for a resource that was previously transitioned to ERHIPipeline::All. |