Navigation
API > API/Plugins > API/Plugins/Composure
| |
|
| Name |
ETargetUsageFlags |
| Type |
enum |
| Header File |
/Engine/Plugins/Compositing/Composure/Source/Composure/Classes/CompositingElement.h |
| Include Path |
#include "CompositingElement.h" |
Syntax
enum ETargetUsageFlags
{
USAGE_None = 0x00,
USAGE_Input = 1<<0,
USAGE_Transform = 1<<1,
USAGE_Output = 1<<2,
USAGE_Persistent = 1<<5,
USAGE_Intermediate0 = 1<<3,
USAGE_Intermediate1 = 1<<4,
}
Values
| Name |
Remarks |
| USAGE_None |
|
| USAGE_Input |
|
| USAGE_Transform |
|
| USAGE_Output |
|
| USAGE_Persistent |
|
| USAGE_Intermediate0 |
If a pass is tagged 'intermediate' it is still available to the pass immediately after it. |
| USAGE_Intermediate1 |
|