UNPKG

@openhps/core

Version:

Open Hybrid Positioning System - Core component

9 lines (6 loc) 364 B
import { RenderTarget, RenderTargetOptions } from "../core/RenderTarget.js"; import { Texture } from "../textures/Texture.js"; export class WebGLRenderTarget<TTexture extends Texture | Texture[] = Texture> extends RenderTarget<TTexture> { constructor(width?: number, height?: number, options?: RenderTargetOptions); readonly isWebGLRenderTarget: true; }