Add mixed processor callbacks
This commit is contained in:
parent
c994145e2b
commit
886948479b
1 changed files with 8 additions and 0 deletions
|
|
@ -2273,5 +2273,13 @@ namespace Raylib_cs
|
|||
/// <summary>Detach audio stream processor from stream</summary>
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DetachAudioStreamProcessor(AudioStream stream, delegate* unmanaged[Cdecl]<sbyte*, uint, void> processor);
|
||||
|
||||
/// <summary>Attach audio stream processor to the entire audio pipeline</summary>
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void AttachAudioMixedProcessor(delegate* unmanaged[Cdecl]<sbyte*, uint, void> processor);
|
||||
|
||||
/// <summary>Detach audio stream processor from the entire audio pipeline</summary>
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DetachAudioMixedProcessor(delegate* unmanaged[Cdecl]<sbyte*, uint, void> processor);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue