Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FCustomRenderPassBase
| Name | ERenderCaptureType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Rendering/CustomRenderPass.h |
| Include Path | #include "Rendering/CustomRenderPass.h" |
Syntax
enum ERenderCaptureType
{
NoCapture,
Capture,
BeginCapture,
EndCapture,
}
Values
| Name | Remarks |
|---|---|
| NoCapture | Don't trigger a render capture |
| Capture | Start a render capture on PreRender, stop it on PostRender |
| BeginCapture | Start a render capture on PreRender (this must be followed by another pass with EndCapture). |
| EndCapture | Stop a render capture on PostRender (this must be preceded by another pass with BeginCapture). |