예제 #1
0
 /// <summary>
 /// Start recording samples.
 /// The number of available samples can be obtained through the <see cref="AvailableSamples"/> property.
 /// The data can be queried with any <see cref="ReadSamples(IntPtr, int)"/> method.
 /// </summary>
 public void Start()
 {
     Alc.CaptureStart(Handle);
     IsRunning = true;
 }
예제 #2
0
 /// <summary>
 /// Start recording samples.
 /// The number of available samples can be obtained through the <see cref="AvailableSamples"/> property.
 /// The data can be queried with any <see cref="ReadSamples(IntPtr, int)"/> method.
 /// </summary>
 public void Start()
 {
     Alc.CaptureStart(Handle);
     _isrecording = true;
 }
예제 #3
0
 public void Start()
 {
     Alc.CaptureStart(this.Handle);
     this._isrecording = true;
 }