UNPKG

548 BTypeScriptView Raw
1import { DRAW_MODES } from '@pixi/constants';
2import type { BLEND_MODES } from '@pixi/constants';
3import type { BatchTextureArray } from './BatchTextureArray';
4/**
5 * Used by the batcher to draw batches.
6 * Each one of these contains all information required to draw a bound geometry.
7 * @memberof PIXI
8 */
9export declare class BatchDrawCall {
10 texArray: BatchTextureArray;
11 type: DRAW_MODES;
12 blend: BLEND_MODES;
13 start: number;
14 size: number;
15 /** Data for uniforms or custom webgl state. */
16 data: any;
17 constructor();
18}