Browse Source

Removed non-matched closing parenthesis...

Elias Hasle 6 years ago
parent
commit
a82a98769d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/shaders/ShaderChunk/fog_fragment.glsl.js

+ 1 - 1
src/renderers/shaders/ShaderChunk/fog_fragment.glsl.js

@@ -3,7 +3,7 @@ export default /* glsl */`
 
 	#ifdef FOG_EXP2
 
-		float fogFactor = 1.0 - exp( - fogDensity * fogDensity * fogDepth * fogDepth ) );
+		float fogFactor = 1.0 - exp( - fogDensity * fogDensity * fogDepth * fogDepth );
 
 	#else