copyBufferToBuffer method

void copyBufferToBuffer(
  1. GPUBuffer source,
  2. int sourceOffset,
  3. GPUBuffer destination,
  4. int destinationOffset,
  5. int size,
)

Straight buffer-to-buffer bytes, for whoever is moving a staged upload into its final home rather than writing it through the queue.

Implementation

external void copyBufferToBuffer(
  GPUBuffer source,
  int sourceOffset,
  GPUBuffer destination,
  int destinationOffset,
  int size,
);