interface InternalRenderTarget {
    _depthTexture: InternalTexture;
    _generateMipmap: boolean;
    _isCube: boolean;
    _samples: number;
    _textures: InternalTexture[];
    _texturesResolve?: InternalTexture[];
    colorFormat: RenderTargetFormat;
    depthStencilFormat: RenderTargetFormat;
    gpuMemory: number;
    isSRGB: boolean;
    dispose(): void;
}

实现于

属性

_depthTexture: InternalTexture
_generateMipmap: boolean
_isCube: boolean
_samples: number
_textures: InternalTexture[]
_texturesResolve?: InternalTexture[]
colorFormat: RenderTargetFormat
depthStencilFormat: RenderTargetFormat
gpuMemory: number
isSRGB: boolean

方法