Small fix
This commit is contained in:
parent
bf13c517ab
commit
9e1a7213c7
@ -289,7 +289,7 @@ void main() {
|
|||||||
// apply exposure, removing this makes the brighter colors look ugly
|
// apply exposure, removing this makes the brighter colors look ugly
|
||||||
// you can play around with removing this
|
// you can play around with removing this
|
||||||
col = 1.0 - exp(-col);
|
col = 1.0 - exp(-col);
|
||||||
|
col = min(col, vec3(1.0));
|
||||||
// Output to screen
|
// Output to screen
|
||||||
f_color = vec4(col, 1.0);
|
f_color = vec4(col, 1.0);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user