/** * @author alteredq / http://alteredqualia.com/ */ THREE.DataTexture = function ( data, width, height, format, type, mapping, wrapS, wrapT, magFilter, minFilter ) { THREE.Texture.call( this, null, mapping, wrapS, wrapT, magFilter, minFilter, format, type ); this.image = { data: data, width: width, height: height }; }; THREE.DataTexture.prototype = new THREE.Texture(); THREE.DataTexture.prototype.constructor = THREE.DataTexture; THREE.DataTexture.prototype.clone = function () { var clonedTexture = new THREE.DataTexture( this.image.data, this.image.width, this.image.height, this.format, this.type, this.mapping, this.wrapS, this.wrapT, this.magFilter, this.minFilter ); clonedTexture.offset.copy( this.offset ); clonedTexture.repeat.copy( this.repeat ); return clonedTexture; };