WebGLRenderTarget.js 269 B

123456789101112131415
  1. import { RenderTarget } from '../core/RenderTarget.js';
  2. class WebGLRenderTarget extends RenderTarget {
  3. constructor( width = 1, height = 1, options = {} ) {
  4. super( width, height, options );
  5. this.isWebGLRenderTarget = true;
  6. }
  7. }
  8. export { WebGLRenderTarget };
粤ICP备19079148号