6 lines
89 B
HLSL
6 lines
89 B
HLSL
float4 linear_from_srgb(float4 srgb)
|
|
{
|
|
return float4(pow(srgb.rgb, 2.2), srgb.a);
|
|
}
|
|
|