Navigation
API > API/Runtime > API/Runtime/Core
Defines which channel is valid for each pixel format.
| Name | EPixelFormatChannelFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/PixelFormat.h |
| Include Path | #include "PixelFormat.h" |
Syntax
enum EPixelFormatChannelFlags
{
R = 1 << 0,
G = 1 << 1,
B = 1 << 2,
A = 1 << 3,
RG = R | G,
RGB = R | G | B,
RGBA = R | G | B | A,
None = 0,
}
Values
| Name | Remarks |
|---|---|
| R | |
| G | |
| B | |
| A | |
| RG | |
| RGB | |
| RGBA | |
| None |