12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import { EventDispatcher } from '../core/EventDispatcher';
- import { Texture } from '../textures/Texture';
- import { LinearFilter } from '../constants';
- import { Vector4 } from '../math/Vector4';
- import { _Math } from '../math/Math';
- /**
- * @author szimek / https://github.com/szimek/
- * @author alteredq / http://alteredqualia.com/
- * @author Marius Kintel / https://github.com/kintel
- */
- /*
- In options, we can specify:
- * Texture parameters for an auto-generated target texture
- * depthBuffer/stencilBuffer: Booleans to indicate if we should generate these buffers
- */
- function WebGLRenderTarget( width, height, options ) {
- this.uuid = _Math.generateUUID();
- this.width = width;
- this.height = height;
- this.scissor = new Vector4( 0, 0, width, height );
- this.scissorTest = false;
- this.viewport = new Vector4( 0, 0, width, height );
- options = options || {};
- if ( options.minFilter === undefined ) options.minFilter = LinearFilter;
- this.texture = new Texture( undefined, undefined, options.wrapS, options.wrapT, options.magFilter, options.minFilter, options.format, options.type, options.anisotropy, options.encoding );
- this.depthBuffer = options.depthBuffer !== undefined ? options.depthBuffer : true;
- this.stencilBuffer = options.stencilBuffer !== undefined ? options.stencilBuffer : true;
- this.depthTexture = options.depthTexture !== undefined ? options.depthTexture : null;
- }
- Object.assign( WebGLRenderTarget.prototype, EventDispatcher.prototype, {
- isWebGLRenderTarget: true,
- setSize: function ( width, height ) {
- if ( this.width !== width || this.height !== height ) {
- this.width = width;
- this.height = height;
- this.dispose();
- }
- this.viewport.set( 0, 0, width, height );
- this.scissor.set( 0, 0, width, height );
- },
- clone: function () {
- return new this.constructor().copy( this );
- },
- copy: function ( source ) {
- this.width = source.width;
- this.height = source.height;
- this.viewport.copy( source.viewport );
- this.texture = source.texture.clone();
- this.depthBuffer = source.depthBuffer;
- this.stencilBuffer = source.stencilBuffer;
- this.depthTexture = source.depthTexture;
- return this;
- },
- dispose: function () {
- this.dispatchEvent( { type: 'dispose' } );
- }
- } );
- export { WebGLRenderTarget };
|