Browse Source

Removed leftover unused property

Marius Kintel 10 years ago
parent
commit
e492cdc7a5
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/renderers/WebGLRenderTarget.js

+ 0 - 2
src/renderers/WebGLRenderTarget.js

@@ -23,8 +23,6 @@ THREE.WebGLRenderTarget = function ( width, height, options ) {
 	this.depthBuffer = options.depthBuffer !== undefined ? options.depthBuffer : true;
 	this.stencilBuffer = options.stencilBuffer !== undefined ? options.stencilBuffer : true;
 
-	this.generateMipmaps = true;
-
 	this.shareDepthFrom = options.shareDepthFrom !== undefined ? options.shareDepthFrom : null;
 
 };