pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
9 lines (8 loc) • 336 B
TypeScript
/**
* The WebGL rendering context type used by the PixiJS WebGL renderer.
* This is typically a `WebGL2RenderingContext`, which is the default for PixiJS.
* It is used to ensure that the renderer operates with the correct context type.
* @category rendering
* @advanced
*/
export type GlRenderingContext = WebGL2RenderingContext;