10 lines
290 B
TypeScript
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;
|
|
}
|