mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
0b1eff8b0d
https://github.com/aras-p/ToyPathTracer b076563906169aa2f9e6d7218ef85decf81f8f72
16 lines
350 B
HLSL
16 lines
350 B
HLSL
float3 LinearToSRGB(float3 rgb)
|
|
{
|
|
rgb = max(rgb, float3(0, 0, 0));
|
|
return max(1.055 * pow(rgb, 0.416666667) - 0.055, 0.0);
|
|
}
|
|
|
|
Texture2D tex : register(t0);
|
|
SamplerState smp : register(s0);
|
|
|
|
float4 main(float2 uv : TEXCOORD0) : SV_Target
|
|
{
|
|
float3 col = tex.Sample(smp, uv).rgb;
|
|
col = LinearToSRGB(col);
|
|
return float4(col, 1.0f);
|
|
}
|