コード例 #1
0
ファイル: FmodSystem.cs プロジェクト: nathanchere/nFMOD
 private static extern ErrorCode CreateDSP(IntPtr system, ref DSPDescription description, ref int Dsp);
コード例 #2
0
ファイル: FmodSystem.cs プロジェクト: nathanchere/nFMOD
 public Dsp CreateDSP(ref DSPDescription description)
 {
     throw new NotImplementedException("Generic DSP creation not supported in nFMOD; use CreateDsp(T) instead");
     //// TODO: update this, possibly have GenericDSP implementation?
     //IntPtr result = IntPtr.Zero;
     //Errors.ThrowIfError(CreateDSP(DangerousGetHandle(), ref description, ref result));
     //return new Dsp(result);
 }