Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/FLinearColor
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Math/Color.h |
Include | #include "Math/Color.h" |
Syntax
static sRGBToLinearTable;
Remarks
Static lookup table used for FColor -> FLinearColor conversion. sRGB
Table for fast FColor -> FLinearColor conversion.
Color > 0.04045 ? pow( Color * (1.0 / 1.055) + 0.0521327, 2.4 ) : Color * (1.0 / 12.92);