Remove trailing spaces

This commit is contained in:
raysan5 2021-10-19 14:57:12 +02:00
parent 719c1551cc
commit fec0ce34c5
80 changed files with 309 additions and 310 deletions

View file

@ -20,7 +20,7 @@ void main()
else color = texture(environmentMap, fragPosition).rgb;
if (doGamma)// Apply gamma correction
{
{
color = color/(color + vec3(1.0));
color = pow(color, vec3(1.0/2.2));
}