瀏覽代碼

Updated builds.

Mr.doob 9 年之前
父節點
當前提交
a01cbb7809
共有 1 個文件被更改,包括 1 次插入31 次删除
  1. 1 31
      build/three.js

+ 1 - 31
build/three.js

@@ -30765,37 +30765,7 @@ THREE.WebGLTextures = function ( _gl, extensions, state, properties, capabilitie
 	var _infoMemory = info.memory;
 	var _isWebGL2 = ( typeof WebGL2RenderingContext !== 'undefined' && _gl instanceof WebGL2RenderingContext );
 
-	/*
-	var textures = {};
-
-	this.get = function ( texture ) {
-
-		var uuid = texture.uuid;
-		var map = textures[ uuid ];
-
-		if ( map === undefined ) {
-
-			map = {};
-			textures[ uuid ] = map;
-
-		}
-
-		return map;
-
-	};
-
-	this.delete = function ( texture ) {
-
-		delete textures[ texture.uuid ];
-
-	};
-
-	this.clear = function () {
-
-		textures = {};
-
-	};
-	*/
+	//
 
 	function clampToMaxSize ( image, maxSize ) {