Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/PixelFormat.h |
Include |
#include "PixelFormat.h" |
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,
}
Name |
Description |
---|---|
R |
|
G |
|
B |
|
A |
|
RG |
|
RGB |
|
RGBA |
|
None |
Defines which channel is valid for each pixel format.