Navigation
API > API/Runtime > API/Runtime/RHI
References
| Module | RHI |
| Header | /Engine/Source/Runtime/RHI/Public/RHITransientResourceAllocator.h |
| Include | #include "RHITransientResourceAllocator.h" |
Syntax
enum ERHITransientResourceCreateMode
{
Inline,
Task,
}
Values
| Name | Description |
|---|---|
| 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. |