UNPKG

@openhps/core

Version:

Open Hybrid Positioning System - Core component

62 lines (56 loc) 1.32 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; let _id = 0; /** * A bind group represents a collection of bindings and thus a collection * or resources. Bind groups are assigned to pipelines to provide them * with the required resources (like uniform buffers or textures). * * @private */ class BindGroup { /** * Constructs a new bind group. * * @param {string} name - The bind group's name. * @param {Array<Binding>} bindings - An array of bindings. * @param {number} index - The group index. * @param {Array<Binding>} bindingsReference - An array of reference bindings. */ constructor(name = '', bindings = [], index = 0, bindingsReference = []) { /** * The bind group's name. * * @type {string} */ this.name = name; /** * An array of bindings. * * @type {Array<Binding>} */ this.bindings = bindings; /** * The group index. * * @type {number} */ this.index = index; /** * An array of reference bindings. * * @type {Array<Binding>} */ this.bindingsReference = bindingsReference; /** * The group's ID. * * @type {number} */ this.id = _id++; } } var _default = exports.default = BindGroup;