copy method

Implementation

InterleavedBuffer copy(InterleavedBuffer source) {
  array = source.array.clone();
  count = source.count;
  stride = source.stride;
  usage = source.usage;

  return this;
}