소스 검색

WebGLRenderTarget: Removed name from options object. See #10304.

Mr.doob 8 년 전
부모
커밋
c2919eaa28
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      src/renderers/WebGLRenderTarget.js

+ 0 - 2
src/renderers/WebGLRenderTarget.js

@@ -37,8 +37,6 @@ function WebGLRenderTarget( width, height, options ) {
 	this.stencilBuffer = options.stencilBuffer !== undefined ? options.stencilBuffer : true;
 	this.depthTexture = options.depthTexture !== undefined ? options.depthTexture : null;
 
-	this.texture.name = options.name !== undefined ? options.name : "";
-
 }
 
 WebGLRenderTarget.prototype = {