Navigation
API > API/Plugins > API/Plugins/DisplayClusterShaders
Texture utiles flags.
| Name | EDisplayClusterShaderTextureUtilsFlags |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/nDisplay/Source/DisplayClusterShaders/Public/Containers/DisplayClusterShaderContainers_TextureUtils.h |
| Include Path | #include "Containers/DisplayClusterShaderContainers_TextureUtils.h" |
Syntax
enum EDisplayClusterShaderTextureUtilsFlags
{
None = 0,
UseOutputTextureAsInput = 1 << 0,
InvertDirection = 1 << 1,
DisableResize = 1 << 4,
DisableResampleShader = 1 << 5,
DisableUpdateResourcesRectsForResolve = 1 << 6,
EnableLinearAlphaFeather = 1 << 8,
EnableSmoothAlphaFeather = 1 << 9,
}
Values
| Name | Remarks |
|---|---|
| None | |
| UseOutputTextureAsInput | Use only output texture as the source and destination. |
| InvertDirection | Invert direction: From Output_ to the Input_ |
| DisableResize | Trim the input and output rect sizes to the same value. |
| DisableResampleShader | When enabled, bypasses all shader processing and performs a simple texture copy only. |
| DisableUpdateResourcesRectsForResolve | Dont update resource rects, they are expected to be user defined. |
| EnableLinearAlphaFeather | Applies a linear alpha fade (feathering) to all edges of the rectangle. |
| EnableSmoothAlphaFeather | Enables smooth (cubic Hermite) alpha feathering (fade-out) on all sides of the rectangle. |