This commit is contained in:
33333-33333 2026-06-01 18:27:25 +09:00
commit 2d42f7f487
7 changed files with 4065 additions and 0 deletions

11
js/render-pipeline.js Normal file
View file

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