UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

23 lines (20 loc) 653 B
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