UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

19 lines 657 B
export class WebGLRenderContext extends IFrameGraphContext { /** * * @param {WebGL2RenderingContext} ctx */ constructor(ctx: WebGL2RenderingContext); createResource(descriptor: any): RenderTarget; destroyResource(resource: any, descriptor: any): boolean; /** * * @param {TextureDescriptor} descriptor */ createRenderTarget(descriptor: TextureDescriptor): RenderTarget; destroyRenderTarget(target: any): boolean; #private; } import { IFrameGraphContext } from "../IFrameGraphContext.js"; import { RenderTarget } from "../resource/RenderTarget.js"; //# sourceMappingURL=WebGLRenderContext.d.ts.map