fiirst
This commit is contained in:
parent
4f5cf7d425
commit
2d42f7f487
7 changed files with 4065 additions and 0 deletions
11
js/render-pipeline.js
Normal file
11
js/render-pipeline.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
(function () {
|
||||
'use strict';
|
||||
|
||||
const root = window.PixelIslandModules ||= {};
|
||||
|
||||
root.RenderPipeline = {
|
||||
run(stages, context) {
|
||||
for (const stage of stages) stage(context);
|
||||
}
|
||||
};
|
||||
})();
|
||||
Loading…
Add table
Add a link
Reference in a new issue