13 lines
590 B
JavaScript
13 lines
590 B
JavaScript
shadow$provide.module$node_modules$pixi_DOT_js$lib$scene$container$utils$executeInstructions = function(global, require, module, exports) {
|
|
exports.executeInstructions = function(renderGroup, renderer) {
|
|
renderGroup = renderGroup.instructionSet;
|
|
const instructions = renderGroup.instructions;
|
|
for (let i = 0; i < renderGroup.instructionSize; i++) {
|
|
const instruction = instructions[i];
|
|
renderer[instruction.renderPipeId].execute(instruction);
|
|
}
|
|
};
|
|
};
|
|
|
|
//# sourceMappingURL=module$node_modules$pixi_DOT_js$lib$scene$container$utils$executeInstructions.js.map
|