UNPKG

three

Version:

JavaScript 3D library

16 lines (8 loc) 318 B
import StorageBufferAttribute from './StorageBufferAttribute.js'; class IndirectStorageBufferAttribute extends StorageBufferAttribute { constructor( array, itemSize ) { super( array, itemSize, Uint32Array ); this.isIndirectStorageBufferAttribute = true; } } export default IndirectStorageBufferAttribute;