StorageBuffer.js 262 B

1234567891011121314151617
  1. import Buffer from './Buffer.js';
  2. class StorageBuffer extends Buffer {
  3. constructor( name, attribute ) {
  4. super( name, attribute ? attribute.array : null );
  5. this.attribute = attribute;
  6. this.isStorageBuffer = true;
  7. }
  8. }
  9. export default StorageBuffer;