mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-11 14:06:02 +10:00
28 lines
991 B
JavaScript
28 lines
991 B
JavaScript
/**
|
|
* @author szimek / https://github.com/szimek/
|
|
*/
|
|
|
|
THREE.WebGLRenderTarget = function ( width, height, options ) {
|
|
|
|
this.width = width;
|
|
this.height = height;
|
|
|
|
options = options || {};
|
|
|
|
this.wrapS = options.wrapS !== undefined ? options.wrapS : THREE.ClampToEdgeWrapping;
|
|
this.wrapT = options.wrapT !== undefined ? options.wrapT : THREE.ClampToEdgeWrapping;
|
|
|
|
this.magFilter = options.magFilter !== undefined ? options.magFilter : THREE.LinearFilter;
|
|
this.minFilter = options.minFilter !== undefined ? options.minFilter : THREE.LinearMipMapLinearFilter;
|
|
|
|
this.offset = new THREE.Vector2( 0, 0 );
|
|
this.repeat = new THREE.Vector2( 1, 1 );
|
|
|
|
this.format = options.format !== undefined ? options.format : THREE.RGBAFormat;
|
|
this.type = options.type !== undefined ? options.type : THREE.UnsignedByteType;
|
|
|
|
this.depthBuffer = options.depthBuffer !== undefined ? options.depthBuffer : true;
|
|
this.stencilBuffer = options.stencilBuffer !== undefined ? options.stencilBuffer : true;
|
|
|
|
};
|