Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Equalizer"/> class.
 /// </summary>
 public Equalizer()
     : base(IntPtr.Zero)
 {
     XAPOFx.CreateFX(XAPOFx.CLSID_FXEQ, this);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Reverb"/> class.
 /// </summary>
 public Reverb(SharpDX.XAudio2.XAudio2 device)
     : base(device)
 {
     XAPOFx.CreateFX(device, XAPOFx.CLSID_FXReverb, this);
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Echo"/> class.
 /// </summary>
 public Echo(SharpDX.XAudio2.XAudio2 device)
     : base(device)
 {
     XAPOFx.CreateFX(device, XAPOFx.CLSID_FXEcho, this);
 }
Example #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Reverb"/> class.
 /// </summary>
 public Reverb()
     : base(IntPtr.Zero)
 {
     XAPOFx.CreateFX(XAPOFx.CLSID_FXReverb, this);
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Echo"/> class.
 /// </summary>
 public Echo()
     : base(IntPtr.Zero)
 {
     XAPOFx.CreateFX(XAPOFx.CLSID_FXEcho, this);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Equalizer"/> class.
 /// </summary>
 public Equalizer(SharpDX.XAudio2.XAudio2 device)
     : base(device)
 {
     XAPOFx.CreateFX(device, XAPOFx.CLSID_FXEQ, this);
 }
Example #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MasteringLimiter"/> class.
 /// </summary>
 public MasteringLimiter() : base(IntPtr.Zero)
 {
     XAPOFx.CreateFX(XAPOFx.CLSID_FXMasteringLimiter, this);
 }
Example #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MasteringLimiter"/> class.
 /// </summary>
 public MasteringLimiter(SharpDX.XAudio2.XAudio2 device) : base(device)
 {
     XAPOFx.CreateFX(device, XAPOFx.CLSID_FXMasteringLimiter, this);
 }