Browse Source

set boolean to `currentPremultipledAlpha` (#24955)

ycw 2 years ago
parent
commit
c24bba4802
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/renderers/webgl/WebGLState.js

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

@@ -718,7 +718,7 @@ function WebGLState( gl, extensions, capabilities ) {
 		}
 
 		currentBlending = blending;
-		currentPremultipledAlpha = null;
+		currentPremultipledAlpha = false;
 
 	}