/// <summary>
 /// This method is called before reading the samples from the mix
 /// </summary>
 /// <param name="frameCount">The number of frames to mix</param>
 /// <param name="executionMode">The execution mode to be used for audio kernels</param>
 /// <remarks>This method will be bursted if the owning IAudioOutputJob is decorated with BurstCompileAttribute</remarks>
 public void BeginMix(int frameCount, ExecutionMode executionMode = ExecutionMode.Jobified)
 {
     m_Graph.BeginMix(frameCount, executionMode);
 }