Navigation
API > API/Runtime > API/Runtime/RHICore
References
| Module | RHICore |
| Header | /Engine/Source/Runtime/RHICore/Public/RHICoreTransientResourceAllocator.h |
| Include | #include "RHICoreTransientResourceAllocator.h" |
Syntax
enum ERHITransientHeapFlags
{
AllowBuffers = 1 << 0,
AllowTextures = 1 << 1,
AllowRenderTargets = 1 << 2,
AllowAll = AllowBuffers | AllowTextures | AllowRenderTargets,
}
Values
| Name | Description |
|---|---|
| AllowBuffers | Supports placing buffers onto the heap. |
| AllowTextures | Supports placing textures with UAV support onto the heap. |
| AllowRenderTargets | Supports placing render targets onto the heap. |
| AllowAll | Supports all resource types. |