소스 검색

Merge pull request #17895 from Tradias/dev

WebGLState: Fix EXT_blend_minmax setting.
Mr.doob 5 년 전
부모
커밋
d74d83bbe6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/renderers/webgl/WebGLState.js

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

@@ -518,7 +518,7 @@ function WebGLState( gl, extensions, capabilities ) {
 		if ( extension !== null ) {
 
 			equationToGL[ MinEquation ] = extension.MIN_EXT;
-			equationToGL[ MaxEquation ] = extension.MIN_EXT;
+			equationToGL[ MaxEquation ] = extension.MAX_EXT;
 
 		}