Navigation
API > API/Runtime > API/Runtime/RHI
| Name | ERHITransientResourceCreateMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/RHI/Public/RHITransientResourceAllocator.h |
| Include Path | #include "RHITransientResourceAllocator.h" |
Syntax
enum ERHITransientResourceCreateMode
{
Inline,
Task,
}
Values
| Name | Remarks |
|---|---|
| Inline | Transient resources are always created inline inside of the Create call. |
| Task | Transient resource creation may be offloaded to a task (dependent on platform), in which case FRHITransientResource::Finish must be called prior to accessing the underlying RHI resource. |