Navigation
API > API/Runtime > API/Runtime/Engine
Bitmask of execution stages, aligned with EStage indices.
| Name | MIR::EStageMask |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Materials/MaterialIRCommon.h |
| Include Path | #include "Materials/MaterialIRCommon.h" |
Syntax
namespace MIR
{
enum EStageMask
{
None = 0,
Vertex = 1 << 0,
Pixel = 1 << 1,
Compute = 1 << 2,
PixelAndCompute = Pixel | Compute,
Any = Vertex | Pixel | Compute,
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Vertex | |
| Pixel | |
| Compute | |
| PixelAndCompute | |
| Any |