UNPKG

three

Version:

JavaScript 3D library

22 lines (16 loc) 513 B
import { WebGLRenderTarget, WebGLRenderTargetOptions, } from './WebGLRenderTarget'; export class WebGLMultisampleRenderTarget extends WebGLRenderTarget { constructor( width: number, height: number, options?: WebGLRenderTargetOptions ); readonly isWebGLMultisampleRenderTarget: true; /** * Specifies the number of samples to be used for the renderbuffer storage.However, the maximum supported size for multisampling is platform dependent and defined via gl.MAX_SAMPLES. */ samples: number; }