瀏覽代碼

removed debug comments

Benjamin Guignabert 5 年之前
父節點
當前提交
15a4e3e71e
共有 1 個文件被更改,包括 0 次插入2 次删除
  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);
 }