diff options
| author | Alberto González Palomo <[email protected]> | 2023-07-19 23:11:29 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-19 23:11:29 +0200 |
| commit | 7124a14a60a4bf7e4357030395750e03a1b976b2 (patch) | |
| tree | 4dfe1b9ba10443d6d975e498a9da80318fc6f925 /src | |
| parent | d6f16b76649944f65491633a75ad648a6ddfdacf (diff) | |
| download | raylib-7124a14a60a4bf7e4357030395750e03a1b976b2.tar.gz raylib-7124a14a60a4bf7e4357030395750e03a1b976b2.zip | |
Document buffer format for audio processors. (#3186)
Diffstat (limited to 'src')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index f9f36626..c20a69d2 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1591,7 +1591,7 @@ RLAPI void SetAudioStreamCallback(AudioStream stream, AudioCallback callback); RLAPI void AttachAudioStreamProcessor(AudioStream stream, AudioCallback processor); // Attach audio stream processor to stream RLAPI void DetachAudioStreamProcessor(AudioStream stream, AudioCallback processor); // Detach audio stream processor from stream -RLAPI void AttachAudioMixedProcessor(AudioCallback processor); // Attach audio stream processor to the entire audio pipeline +RLAPI void AttachAudioMixedProcessor(AudioCallback processor); // Attach audio stream processor to the entire audio pipeline, receives the samples as <float>s RLAPI void DetachAudioMixedProcessor(AudioCallback processor); // Detach audio stream processor from the entire audio pipeline #if defined(__cplusplus) |
