Navigation
API > API/Runtime > API/Runtime/RHI
Action to take when a render target is set.
| Name | ERenderTargetLoadAction |
| Type | enum |
| Header File | /Engine/Source/Runtime/RHI/Public/RHIDefinitions.h |
| Include Path | #include "RHIDefinitions.h" |
Syntax
enum ERenderTargetLoadAction
{
ENoAction,
ELoad,
EClear,
Num,
NumBits = 2,
}
Values
| Name | Remarks |
|---|---|
| ENoAction | Untouched contents of the render target are undefined. Any existing content is not preserved. |
| ELoad | Existing contents are preserved. |
| EClear | The render target is cleared to the fast clear value specified on the resource. |
| Num | |
| NumBits |