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">
11 lines (10 loc) • 303 B
TypeScript
import type { System } from '../system/System';
/**
* System plugin to the renderer to manage the shaders.
* @category rendering
* @advanced
*/
export interface ShaderSystem extends System {
/** the maximum number of textures that can be bound to a shader */
readonly maxTextures: number;
}