Files
nothoughts/node_modules/pixi.js/lib/rendering/renderers/gl/GlUboSystem.d.ts
2025-08-04 18:57:35 +02:00

15 lines
452 B
TypeScript

import { ExtensionType } from '../../../extensions/Extensions';
import { UboSystem } from '../shared/shader/UboSystem';
/**
* System plugin to the renderer to manage uniform buffers. But with an WGSL adaptor.
* @memberof rendering
*/
export declare class GlUboSystem extends UboSystem {
/** @ignore */
static extension: {
readonly type: readonly [ExtensionType.WebGLSystem];
readonly name: "ubo";
};
constructor();
}