15 lines
457 B
JavaScript
15 lines
457 B
JavaScript
'use strict';
|
|
|
|
"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);
|
|
}
|
|
}
|
|
|
|
exports.executeInstructions = executeInstructions;
|
|
//# sourceMappingURL=executeInstructions.js.map
|