Navigation
API > API/Runtime > API/Runtime/RHICore
| Name | ERHITransientHeapFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/RHICore/Public/RHICoreTransientResourceAllocator.h |
| Include Path | #include "RHICoreTransientResourceAllocator.h" |
Syntax
enum ERHITransientHeapFlags
{
AllowBuffers = 1 << 0,
AllowTextures = 1 << 1,
AllowRenderTargets = 1 << 2,
AllowNNEBuffers = 1 << 3,
AllowAll = AllowBuffers | AllowTextures | AllowRenderTargets | AllowNNEBuffers,
}
Values
| Name | Remarks |
|---|---|
| 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. |
| AllowNNEBuffers | Supports placing NNE accessible buffers onto the heap. Differentiation is required for DirectML with multi-GPU. |
| AllowAll | Supports all resource types. |