Navigation
API > API/Runtime > API/Runtime/Core
Enum for the different kinds of gamma spaces we expect to need to convert from/to.
| Name | EGammaSpace |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Math/Color.h |
| Include Path | #include "Math/Color.h" |
Syntax
enum EGammaSpace
{
Linear,
Pow22,
sRGB,
Invalid,
}
Values
| Name | Remarks |
|---|---|
| Linear | No gamma correction is applied to this space, the incoming colors are assumed to already be in linear space. |
| Pow22 | A simplified sRGB gamma correction is applied, pow(1/2.2). |
| sRGB | Use the standard sRGB conversion. |
| Invalid |