Files
nothoughts/node_modules/pixi.js/lib/rendering/renderers/shared/shader/ShaderSystem.d.ts
2025-08-04 18:57:35 +02:00

10 lines
290 B
TypeScript

import type { System } from '../system/System';
/**
* System plugin to the renderer to manage the shaders.
* @memberof rendering
*/
export interface ShaderSystem extends System {
/** the maximum number of textures that can be bound to a shader */
readonly maxTextures: number;
}