pixi.js
Version:
PixiJS — The HTML5 Creation Engine =============
15 lines (12 loc) • 457 B
JavaScript
;
;
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);
}
}
exports.executeInstructions = executeInstructions;
//# sourceMappingURL=executeInstructions.js.map