Newer
Older
pixi.js / packages / core / src / batch / BatchDrawCall.js
@Dave Moore Dave Moore on 15 Jan 2019 405 bytes Documentation updates (#5366)
/**
 * Used by the batcher to draw batches.
 * Each one of these contains all information required to draw a bound geometry.
 *
 * @class
 * @memberof PIXI
 */
export default class BatchDrawCall
{
    constructor()
    {
        this.textures = [];
        this.ids = [];
        this.blend = 0;
        this.textureCount = 0;
        this.start = 0;
        this.size = 0;
        this.type = 4;
    }
}