pixel/js/render-pipeline.js
2026-06-01 18:27:25 +09:00

11 lines
202 B
JavaScript

(function () {
'use strict';
const root = window.PixelIslandModules ||= {};
root.RenderPipeline = {
run(stages, context) {
for (const stage of stages) stage(context);
}
};
})();