Small fix

This commit is contained in:
MihailRis 2023-12-29 16:23:12 +03:00
parent bf13c517ab
commit 9e1a7213c7

View File

@ -289,7 +289,7 @@ void main() {
// apply exposure, removing this makes the brighter colors look ugly
// you can play around with removing this
col = 1.0 - exp(-col);
col = min(col, vec3(1.0));
// Output to screen
f_color = vec4(col, 1.0);
}