Navigation
API > API/Runtime > API/Runtime/Renderer
References
| |
|
| Module |
Renderer |
| Header |
/Engine/Source/Runtime/Renderer/Public/ScreenPass.h |
| Include |
#include "ScreenPass.h" |
Syntax
enum EDownsampleDepthFilter
{
Point,
Max,
Checkerboard,
MinAndMaxDepth,
}
Values
| Name |
Description |
| Point |
Produces a depth value that is not conservative but has consistent error (i.e. picks the sample). |
| Max |
Produces a conservative max depth value. |
| Checkerboard |
Produces a checkerboarded selection of min and max depth values. |
| MinAndMaxDepth |
Procuce a color texture where R=min and G=max DeviceZ. |