コード例 #1
0
ファイル: AudioCapture.cs プロジェクト: zanzo420/opentk
 /// <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
ファイル: AudioCapture.cs プロジェクト: x5f3759df/Citrus
 /// <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;
 }