bindIndexBuffer method
- BufferView bufferView,
- IndexType indexType
Binds bufferView as the index buffer.
indexType is the width of each index. The number of indices to draw
is passed separately, to drawIndexed.
Implementation
void bindIndexBuffer(BufferView bufferView, IndexType indexType) {
bufferView.buffer._bindAsIndexBuffer(
this,
bufferView.offsetInBytes,
bufferView.lengthInBytes,
indexType,
);
}