Files
nothoughts/node_modules/pixi.js/lib/rendering/batcher/shared/BatchTextureArray.mjs
2025-08-04 18:57:35 +02:00

22 lines
513 B
JavaScript

"use strict";
class BatchTextureArray {
constructor() {
/** Respective locations for textures. */
this.ids = /* @__PURE__ */ Object.create(null);
this.textures = [];
this.count = 0;
}
/** Clear the textures and their locations. */
clear() {
for (let i = 0; i < this.count; i++) {
const t = this.textures[i];
this.textures[i] = null;
this.ids[t.uid] = null;
}
this.count = 0;
}
}
export { BatchTextureArray };
//# sourceMappingURL=BatchTextureArray.mjs.map