/// <summary>
 /// Set the vbo which owns this batch's memory.
 /// </summary>
 /// <param name="owner">The vbp who owns this batch's memory.</param>
 public void SetMemory(FencedBufferSource owner)
 {
     _memoryOwner = owner;
 }
 /// <inheritdoc />
 public override void Dispose()
 {
     Recycle();
     _memoryOwner = null;
 }