mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-06 05:50:31 +00:00
Fix for Linear Tonemapper color space
This commit is contained in:
parent
b9ed4b3d04
commit
5fedd9b857
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ float3 Tonemap(float3 x)
|
|||
//Linear Tonemap
|
||||
else if (g_fTonemapMode == 5.0)
|
||||
{
|
||||
x = TO_Linear(x);
|
||||
x = toLinear(TO_Linear(toGamma(x)));
|
||||
}
|
||||
|
||||
return x;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue