This commit is contained in:
Akko
2025-08-04 18:57:35 +02:00
parent 8cf6e78a79
commit 9495868c2e
5030 changed files with 518594 additions and 17609 deletions

View File

@@ -0,0 +1,22 @@
import { ExtensionType } from '../../../extensions/Extensions.mjs';
import { UboSystem } from '../shared/shader/UboSystem.mjs';
import { createUboElementsSTD40 } from './shader/utils/createUboElementsSTD40.mjs';
import { createUboSyncFunctionSTD40 } from './shader/utils/createUboSyncSTD40.mjs';
"use strict";
class GlUboSystem extends UboSystem {
constructor() {
super({
createUboElements: createUboElementsSTD40,
generateUboSync: createUboSyncFunctionSTD40
});
}
}
/** @ignore */
GlUboSystem.extension = {
type: [ExtensionType.WebGLSystem],
name: "ubo"
};
export { GlUboSystem };
//# sourceMappingURL=GlUboSystem.mjs.map