web3d / node_modules /three /src /renderers /WebGLRenderTargetCube.js
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
488 Bytes
import { WebGLRenderTarget } from './WebGLRenderTarget.js';
/**
* @author alteredq / http://alteredqualia.com
*/
function WebGLRenderTargetCube( width, height, options ) {
WebGLRenderTarget.call( this, width, height, options );
}
WebGLRenderTargetCube.prototype = Object.create( WebGLRenderTarget.prototype );
WebGLRenderTargetCube.prototype.constructor = WebGLRenderTargetCube;
WebGLRenderTargetCube.prototype.isWebGLRenderTargetCube = true;
export { WebGLRenderTargetCube };