Buckets:
| import Buffer from './Buffer.js'; | |
| /** | |
| * Represents a uniform buffer binding type. | |
| * | |
| * @private | |
| * @augments Buffer | |
| */ | |
| class UniformBuffer extends Buffer { | |
| /** | |
| * Constructs a new uniform buffer. | |
| * | |
| * @param {string} name - The buffer's name. | |
| * @param {TypedArray} [buffer=null] - The buffer. | |
| */ | |
| constructor( name, buffer = null ) { | |
| super( name, buffer ); | |
| /** | |
| * This flag can be used for type testing. | |
| * | |
| * @type {boolean} | |
| * @readonly | |
| * @default true | |
| */ | |
| this.isUniformBuffer = true; | |
| } | |
| } | |
| export default UniformBuffer; | |
Xet Storage Details
- Size:
- 561 Bytes
- Xet hash:
- c26485e1a68cd19b76e29c83963bc5345fa6ba64c5c3daf20cdaa08fdc6129a5
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.