Files
nothoughts/node_modules/pixi.js/lib/scene/container/utils/executeInstructions.mjs
2025-08-04 18:57:35 +02:00

13 lines
424 B
JavaScript

"use strict";
function executeInstructions(renderGroup, renderer) {
const instructionSet = renderGroup.instructionSet;
const instructions = instructionSet.instructions;
for (let i = 0; i < instructionSet.instructionSize; i++) {
const instruction = instructions[i];
renderer[instruction.renderPipeId].execute(instruction);
}
}
export { executeInstructions };
//# sourceMappingURL=executeInstructions.mjs.map