Browse Source

removed debug comments

Benjamin Guignabert 5 năm trước cách đây
mục cha
commit
15a4e3e71e
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      src/Shaders/subSurfaceScattering.fragment.fx

+ 0 - 2
src/Shaders/subSurfaceScattering.fragment.fx

@@ -229,7 +229,5 @@ void main(void)
     // Total weight is 0 for color channels without scattering.
     totalWeight = max(totalWeight, HALF_MIN);
 
-    // gl_FragColor = vec4(totalIrradiance / totalWeight, 1.);
     gl_FragColor = vec4(inputColor.rgb + albedo * max(totalIrradiance / totalWeight, vec3(0.0)), 1.);
-	// gl_FragColor = mix(texture2D(textureSampler, vUV), centerIrradiance, 0.5);
 }