20 lines
519 B
JavaScript
20 lines
519 B
JavaScript
/**
|
|
* @author mrdoob / http://mrdoob.com/
|
|
*/
|
|
|
|
import { Texture } from './Texture.js';
|
|
|
|
function CanvasTexture( canvas, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy ) {
|
|
|
|
Texture.call( this, canvas, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy );
|
|
|
|
this.needsUpdate = true;
|
|
|
|
}
|
|
|
|
CanvasTexture.prototype = Object.create( Texture.prototype );
|
|
CanvasTexture.prototype.constructor = CanvasTexture;
|
|
CanvasTexture.prototype.isCanvasTexture = true;
|
|
|
|
export { CanvasTexture };
|