You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
472 B
39 lines
472 B
import Binding from './Binding.js';
|
|
import { getFloatLength } from './BufferUtils.js';
|
|
|
|
class Buffer extends Binding {
|
|
|
|
constructor( name, buffer = null ) {
|
|
|
|
super( name );
|
|
|
|
this.isBuffer = true;
|
|
|
|
this.bytesPerElement = Float32Array.BYTES_PER_ELEMENT;
|
|
|
|
this._buffer = buffer;
|
|
|
|
}
|
|
|
|
get byteLength() {
|
|
|
|
return getFloatLength( this._buffer.byteLength );
|
|
|
|
}
|
|
|
|
get buffer() {
|
|
|
|
return this._buffer;
|
|
|
|
}
|
|
|
|
update() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default Buffer;
|