Procházet zdrojové kódy

restore old fallthrough behavior for blending modes not recognized.

Ben Houston před 9 roky
rodič
revize
0f1e9b4331
1 změnil soubory, kde provedl 1 přidání a 6 odebrání
  1. 1 6
      src/renderers/webgl/WebGLState.js

+ 1 - 6
src/renderers/webgl/WebGLState.js

@@ -250,16 +250,11 @@ THREE.WebGLState = function ( gl, extensions, paramThreeToGL ) {
 				gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
 				gl.blendFuncSeparate( gl.ZERO, gl.ZERO, gl.SRC_COLOR, gl.SRC_ALPHA );
 
-			} else if( blending === THREE.NormalBlending || blending === THREE.NoBlending ) {
+			} else {
 
 				gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
 				gl.blendFuncSeparate( gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA );
 
-			}
-			else {
-
-				console.error( "Unsupported blending type: " + blending );
-
 			}
 
 			currentBlending = blending;