Merge pull request #76053 from MightiestGoat/fix-sky-auto-exposure

Fix the grainy sky while using debanding.
This commit is contained in:
Rémi Verschelde
2023-05-24 08:46:28 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -215,6 +215,6 @@ void main() {
frag_color.a = alpha;
#ifdef USE_DEBANDING
frag_color.rgb += interleaved_gradient_noise(gl_FragCoord.xy);
frag_color.rgb += interleaved_gradient_noise(gl_FragCoord.xy) * luminance_multiplier;
#endif
}