UNPKG

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">

15 lines (14 loc) 493 B
import { Shader } from '../../renderers/shared/shader/Shader'; /** * DefaultShader is a specialized shader class designed for batch rendering. * It extends the base Shader class and provides functionality for handling * color, texture batching, and pixel rounding in both WebGL and WebGPU contexts. * * It is used by the default batcher * @extends Shader * @category rendering * @advanced */ export declare class DefaultShader extends Shader { constructor(maxTextures: number); }