From d3e424c5666bb02f347ce8dd76a70feb9df0a7cf Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 26 Jul 2018 01:35:21 +0200 Subject: [PATCH] Fix a done TODO (gamma is for E_G, not E_S, and we multiply in the alpha in the smoothness). --- sor.frag | 1 - 1 file changed, 1 deletion(-) diff --git a/sor.frag b/sor.frag index 6c5333f..fc9c462 100644 --- a/sor.frag +++ b/sor.frag @@ -35,7 +35,6 @@ void main() // (it couldn't be done earlier, because we didn't know // the values of the neighboring pixels; they change for // each SOR iteration). - // TODO: Multiply by some gamma. float smooth_l = textureOffset(smoothness_x_tex, tc, ivec2(-1, 0)).x; float smooth_r = texture(smoothness_x_tex, tc).x; float smooth_d = textureOffset(smoothness_y_tex, tc, ivec2( 0, -1)).x; -- 2.39.2