Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit b8ca0c6

Browse files
committed
Tabs -> Spaces
1 parent a53da66 commit b8ca0c6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

PostProcessing/Resources/Shaders/Tonemapping.cginc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ half3 FilmicTonemap(half3 aces)
8484
// Luminance fitting of *RRT.a1.0.3 + ODT.Academy.RGBmonitor_100nits_dim.a1.0.3*.
8585
// https://github.com/colour-science/colour-unity/blob/master/Assets/Colour/Notebooks/CIECAM02_Unity.ipynb
8686
// RMSE: 0.0012846272106
87-
const half a = 278.5085;
88-
const half b = 10.7772;
89-
const half c = 293.6045;
90-
const half d = 88.7122;
91-
const half e = 80.6889;
87+
const half a = 278.5085;
88+
const half b = 10.7772;
89+
const half c = 293.6045;
90+
const half d = 88.7122;
91+
const half e = 80.6889;
9292
half3 x = acescg;
9393
half3 rgbPost = (x * (a * x + b)) / (x * (c * x + d) + e);
9494

0 commit comments

Comments
 (0)